View Single Post
  #25  
Old 04-27-2003, 07:37 AM
hogosha
Fire Beetle
 
Join Date: Feb 2002
Posts: 2
Default Would this work?

Would this work in world.qst ? This is a little quest that I think every server should have for it's staff. For 1, it can help your staff members to get the job done easier. Like if they are starting a quest, they can write the quest in there. Of coarse the code would have to be updated for the staff members unless there is a flag variable that I didn't see. But for admins, if your just starting a char over this would be a good code, especially if you program it further to give you items for that class. It's a good idea. Feel free to modify it if it works.

Code:
EVENT_SAY {
	if($name="Hogosha") {
		if($1="Hail")
			level(100)
			flag_client(300)
		}
		if($1="Rain") {
			snow(0)
			rain(1)
		}
		if($1="Snow") {
			rain(0)
			snow(1)
		}
		if($1="Weather Stop") {
			rain(0)
			snow(0)
		}
		if($1="Start Quest") {
			say("No Quests")
		}
		if($1="Despawn") {
			depop($mobid)
		}
	}
}
__________________
[three-geeks.org]
Reply With Quote