Bitsys |
06-05-2003 10:12 PM |
Quote:
Today at 04:29 PM Spark said this in Post #1769
I want to use the Store Hack von Lesanne
Must i do anything with the RPG Hack?
|
If you want to use Store Points in the RPG Itemshop, then you will have to go to the Itemshop Options menu and change the first option. Other than that, the two should work just fine.
Quote:
Today at 05:36 PM Moreliator said this in Post #1770
Bitsy, where is the code located that makes the person challenged go first? My members really want me to base it on speed so that its more fair...or at least randomize it.
Thanks.
|
In battlefight.php, find:
PHP Code:
If($confirmation == "Yes") {
$curtime = time();
$DB_site->query("UPDATE battle SET battlestate='1',lastactive='$curtime' WHERE battlenumber='$battlenumber'");
$action = "enterbattle";
}
Somewhere in there you will need to change the 'turnid' for the battle to the ID of the person with the highest speed, or whatever you want. To do this, you could do something like:
PHP Code:
If($confirmation == "Yes") {
$curtime = time();
$DB_site->query("UPDATE battle SET battlestate='1',lastactive='$curtime',turnid='$battle[ownerid]' WHERE battlenumber='$battlenumber'");
$action = "enterbattle";
}
The above example will make it the owner's turn first, instead of the opponent.
|