1. Is that whenever someone uses a transforming verb in my game, the resting verb no longer works. For example, here is one of the verbs:
mob/Hedgehog/verb/Super()
set category="Combat"
set name="Super Mode"
src.overlays+='SWIRL AURA 3.dmi'
src.health=src.maxhealth*7
src.chakra=src.Mchakra*7
src.tai = usr.Mtai*7
src.gen = usr.Mgen*7
src.nin = usr.Mnin*7
usr.verbs += /mob/Hedgehog/verb/ChaosSpear
usr.verbs += /mob/Hedgehog/verb/ChaosPunch
usr.verbs += /mob/Hedgehog/verb/ChaosControl
usr.verbs += /mob/Hedgehog/verb/LightSpeed
usr.verbs += /mob/Hedgehog/verb/RevertSuper
src.incs=1
sleep(600)
mob/Hedgehog/verb/RevertSuper()
set category="Combat"
set name="Revert (Super)"
src.overlays-='SWIRL AURA 3.dmi'
src.health=src.maxhealth*1
src.chakra=src.Mchakra*1
src.tai = usr.Mtai*1
src.gen = usr.Mgen*1
src.nin = usr.Mnin*1
usr.verbs -= /mob/Hedgehog/verb/ChaosSpear
usr.verbs -= /mob/Hedgehog/verb/ChaosPunch
usr.verbs -= /mob/Hedgehog/verb/ChaosControl
usr.verbs -= /mob/Hedgehog/verb/LightSpeed
usr.verbs -= /mob/Hedgehog/verb/RevertSuper
src.incs=1
sleep(600)
And the resting code:
mob
verb
Rest()
set category="Combat"
if(usr.Kaiten)
usr<<"You nuts? You're spinning deflecting attacks. How do you Rest? o_O"
return
if(usr.battlingRC)
return
if(usr.firing)
return
if(usr.hyoushou)
return
if(src.inkyuubi)
return
if(src.incs)
return
if(usr.resting)
sleep(100)
usr.resting=0
usr<<"You stop resting..."
usr.Frozen = 0
usr.icon_state = ""
return
else
if(usr.health == usr.maxhealth && usr.chakra == usr.Mchakra)
usr<<"You donīt need to Rest..."
return
if(usr.meditating||usr.onwater)
return
usr<<"You begin to Rest..."
usr.overlays+='MeditatingEffect.dmi'
usr.resting=1
usr.Frozen = 1
usr.icon_state = "rest"
sleep(5)
usr.rest()
return
So I don't know what's exactly wrong, it doesn't have any errors, but when you first transform, you can't rest, even when you revert, you still can't. Any ideas?
2. I want to make a verb that makes it so you specifically view a set of Choords, like, I want it so you see a certain area. For example, something like this:
set category="Commands"
set name="Spectate Arena"
And you would automatically view the entire area. Any help?
3. I would like to know how to make it so, when I use the Host Tournament verb, I can pick a out of list of people that USED "Join Tournament" verb that all people get when I host it. I have vars set up, "Intournament = 0" I want them to get teleported to the opposite ends of the arena, and an automatic system counts down and at the end says GO!, also, I want it to give me a verb to declare the winner, it might sound demanding, but I'm just trying to ask for help... I just don't now how to set the actual verb up.
4. One last thing, I would like to have a challenge verb, a verb that you can use, that lists all clients in the world, and when you "challenge" them, you send them a message like "Would you like the accept [usr]'s challege?" if yes, then both people get teleported to a room, one at one end, the other at the other end. And also declares the winner (the person who killed the other) to the world and then teleports the winner to his spawn.
Thanks so much!
2. Look up the client variables, eye and perspective.
3 & 4. Reading the DM Guide, then using the reference, would be very beneficial to gain a basic understanding of how Dream Maker works, and what sorts of tricks you can use to accomplish different sorts of things.