Quote:
Originally posted by geniuscrew
Just a little add-on, code thingy which allows Admins, Mods, and Supermods to use the system even if it's turned off.
|
Heh, don't forget to turn it back on if you turn it off
Quote:
Originally posted by chrisz
I am using the auto update is that bad??
If it is I will take it out...
So is it or what?
|
It is not bad. 5 queries only on a reply or new thread isn't too bad, but since I can make it better I wouldn't recommend doing it right now. I only released it because several people have asked.
Quote:
Originally posted by geniuscrew
Therefore mroe bandwidth is used too.
|
I am pretty sure it doesn't use more bandwidth, however it will use up a little more of the server's resources.
Quote:
Originally posted by chrisz
And Bitsys when you release the shorter one can you tell me how to edit the anger so it goes up like 50-80% each time they miss?
|
This involves editing battleupdate.php. All you have to do is find the code that calculates the anger percentage and change it to a higher number.
Quote:
Originally posted by Darkwaltz4
Bug Fix: When editing categories in the itemshop, and leaving 'item type' alone (non-battle, 1/2 handed, etc) (so it displays like "Current (Non-Battle)") and submitted it, it would store null to the battle type.
|
Thanks for pointing that out. The incorrect variable is $cateid. It stores the ID of the category you are currently editing. It seems I accidentally left that in there from a version from a long time ago. Here's a quick fix:
In itemadmin.php, find:
PHP Code:
<option value=\"$cateid\">Current $curtype</option>
and change it to:
PHP Code:
<option value=\"$selcat[battletype]\">Current $curtype</option>
Quote:
Originally posted by Sonikku
Alright...! Everything seemed to work properly until we started buying things...it doesnt recognize items, if someone buys a weapon and has it while in battle it shows in the itemlist but says that user hasnt got a weapon
|
Did you do what it says in the FAQ located in the RPG Admin Panel menu in the Admin cp? It says:
Quote:
Q: Why can't I use items in battle? They are always grayed out and it says, "You do not have a [item name]".
A:
Do the following: In admin cp, go to "Edit Items". Look at a category name (the category names should be above all of the items). Click on the "[edit]" link next to that category. On the next screen, make sure that there is a battle type associated with that item category.
|