ID:169606
 
Is there a way to change world status with a verb? I tried but it didnt work lol..
World_Status()
set category = "Admin"
var/A = input("What would you like the world status to be?","World Status",) as text
client.world.status = "A"
You need just world.status, not client.world.status. You use the "." when the object owns the function or variable in question. Nothing owns the world, therefor it is a global level variable always called world.
In response to Loduwijk
I only put the clietn part when i was trying different ways to see if it would work, and the " fixed it, thanks >.<