I want it so that when someone clicks download and hosts it, they get powers automatically, but nobody else will except the ones I want coded in, of course.
I'm tempted to think it's world/New() that I should put in for giving them verbs and have a variable so it will be like:
var/Host=1
world/New()
for(var/mob/M in world)
if(M)
if(Host==1)
M.verbs += typesof(/mob/Host/verb)
else
return
Would that be the correct way to add someone's host verbs for a game when they host it using Dream Seeker instead of having to manually code their name in?
Awesome! Thanks!