PDA

View Full Version : Applying Quest Changes?


TrinityGuy
01-21-2011, 08:32 PM
Is there a way to apply changes to quests without having to reboot the server? I just got a server started earlier this week and have had to reboot the server every time I try to troubleshoot a quest.

Also a question about conditionals. What is wrong with this:

if(($class = 1)||($class = 2)||($class = 3)
{
code to run if class is 1 OR class is 2 OR class is 3.
}

Thanks.

Caryatis
01-21-2011, 09:02 PM
Should spend 15-20 minutes reading over #help ingame to get an idea of some tools that will be very useful to you.

The command you are looking for is #reloadpl(or #reloadqst).

The problem with your code is you are missing a closing )

joligario
01-21-2011, 09:03 PM
#reloadpl is one command (there are others) to reload quests

In conditionals, you must use double == to check. Using 1 sign sets the variable.

TrinityGuy
01-22-2011, 12:07 AM
Thanks for the command not sure how I missed that. I have the command list printed out in front of me :facepalm: