Staff()
set name = "Teleport"
var/L = new/list()
for(var/mob/player/M in world)
L += M.name
L += "Cancel"
var/choice = input("Who would you like to Teleport next too?") in L
if(choice == "Cancel")
return
for(var/mob/player/M in world)
Problem description:
Basicly my staff have punish people using this and when they tried to punish a guy with a name "§¢£ A £¢§"
it said,
Sorry, the following is not valid: ¢£---A---£¢§
usage: parameter
Why did it say that ?
Try to block those kind of characters i their names because those characters ("%^!*$^£--) may cause errors while trying to punish them using commands.
[Not sure if i am correct, but its what i think]