ID:162675
 
hey how can i give an admin a verb that creats another verb for other players

example:
a war is about to start in 10 sec
then in 10 sec i click a verb from admin verb to give other player a verb to join a war

like if im the admin and i click (Start a war)
from (admin verbs) other players gets a verb called (Join war)
if they click join war, the player will teleport in a coordinate

mob/verb/start_war()
world<<"War will start in 10 seconds!"
for(mob/m in world)m.verbs+=new mob/verb/war/join()
sleep(100)
world<<"A war has begun!"
for(mob/m in world)m.verbs-=new mob/verb/war/join()

mob/verb/war/join()
src.loc=locate(0,0,0)

There ya' go.