ob
key = {"Magicmann","Island"}
Login()
world << "<center><B>Admin [usr] has logged in!</center></B>"
loc = locate(/turf/Start)
icon_state = "crazy colors"
life = 1000
verb
Repop()
set category = "Admin"
switch(alert("Are you sure you want to repop the world?","Repop","Yes","No"))
if("Yes")
world.Repop()
world<<"[usr] is repoping the world!."
if("No")
return
Fly()
set category = "Admin"
density = !density
Reboot()
set category = "Admin"
switch(alert("Are you sure you want to reboot the world?","Reboot","Yes","No"))
if("Yes")
world<<"<font size=1>World reboot iniated by [usr]. Reboot will be in one minute."
sleep(600)
world<<"Rebooting now! (That means Magicmann gets the last word!)"
world.Reboot()
if("No")
return
Announce(msg as text)
set category = "Admin"
world << "<B><center>Administrator [usr] would like to say:</center></B>"
world << "<center><B>[msg]</center></B>"
Edit_Stats()
set category = "Admin"
switch(alert("Would you rather add or take ten stats?","Stat Editing","Add","Subtract","Cancel"))
if("Add")
switch(alert("Would you rather add ten strength or defence?","Stat Adding","Strength","Defence"))
if("Strength")
usr.strength += 10
if("Defence")
usr.defence += 10
if("Subtract")
switch(alert("Would you rather subtract ten attack or defence?","Stat Subtracting","Strength","Defence"))
if("Strength")
usr.strength -= 10
if("Defence")
usr.defence -= 10
if("Cancel")
return
Problem description:
No matter what i do, it gives everyone whoever logs in GM. It happens ALL the time. I do not know how to fix it