Quote:
Originally posted by chrisz
Is there any way to do it so that wen they choose it it cant be changed??
|
Not right now.
Quote:
Originally posted by chrisz
I cant find how to make the anger percentage grow faster can you find it Bitsys?
|
In battleupdate.php, find:
PHP Code:
$randmad = rand(7, 10);
It is in there 3 or 4 times. Here is an explanation:
The rand function (the part that says rand(X, X) ) gives you a random number between the numbers in parentheses, with the lower number being on the left. So, the function rand(7, 10) gives you a random number between 7 and 10. All you have to do is find each instance of this function and change it to what you want. If you want to display a number between 23 and 47, then you can say
PHP Code:
$randmad = rand(23, 47);
Make sense?
One more thing, you do know that there is an edit button, right?