I can not promise that the quest run
PHP Code:
quest I_Kill_You begin
state start begin
when 71900.use begin
say_title("Kill a Player")
say("Please insert the Name of the Player, that you will Kill")
local a = input()
if a == "" or a <= 0 then
say("Error")
end
command("/kill "..a.."")
pc.remove_item(71900)
end
end
end