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"
ID:169606
May 26 2005, 1:02 pm
|
|
Is there a way to change world status with a verb? I tried but it didnt work lol..
|
May 26 2005, 1:05 pm
|
|
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 >.<
|