Login   Register  
PHP Classes
elePHPant
Icontem

File: implementations/2Moons/1_7_2/README.md

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of jstar88  >  OPBE  >  implementations/2Moons/1_7_2/README.md  >  Download  
File: implementations/2Moons/1_7_2/README.md
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: OPBE
Ogame probabilistic battle engine
Author: By
Last change:
Date: 2013-10-26 10:21
Size: 1,306 bytes
 

Contents

Class file image Download
## Installation

1. Download and upload to *ROOT_PATH/includes/libs/opbe/* all [OPBE files](https://github.com/jstar88/opbe/archive/master.zip) .
   You should see something like *ROOT_PATH/includes/libs/opbe/index.php*.
   (Remember to rename opbe-master to opbe)   
   Alternatively, you can open a terminal and do:

    ```
    cd ROOT_PATH/includes/libs/
    sudo git clone https://github.com/jstar88/opbe.git
    
    ```

2. Make sure of correct OPBE path,defined in the implementation file as:
    
    ```php
    require (ROOT_PATH . 'includes'.DIRECTORY_SEPARATOR.'libs'.DIRECTORY_SEPARATOR.'opbe'.DIRECTORY_SEPARATOR.'utils'.DIRECTORY_SEPARATOR.'includer.php');
    ```
3. Replace default 2Moons's *ROOT_PATH/includes/classes/missions/calculateAttack.php* with the one above 
    Alternatively, you can open a terminal and do:
    
    ```
    cd ROOT_PATH/includes/libs/opbe
    sudo cp implementations/2Moons/1_7_2/calculateAttack.php ROOT_PATH/includes/classes/missions/
    
    ```
    
4. Updating:
    You can use filezilla.
    Alternatively, you can open a terminal and do:
    ```
    cd ROOT_PATH/includes/libs/opbe
    sudo git pull
    sudo cp implementations/2Moons/1_7_2/calculateAttack.php ROOT_PATH/includes/classes/missions/
    
    ```