Kann mir einer sagen , was ich an dem Script hier falsch gemacht hab?    
  
cl_list = {}
at_id = 1
list = 0
while cl_list[at_id] ~= nil do
    list = at_id
    at_id = at_id + 1
end
addhook("say","color")
function color(id,txt)
    if player(id,"usgn") == find(player(id,"usgn")) then
        msg(p,"©000000255,..player(p,'name')..txt")
        return 1
    end
end
function find(usgn)
    for index = 0, list do
        if usgn == cl_list[index] then
            return tonumber(usgn)
        end
end
end
Danke im Vorraus!   
 Admin/mod comment
 "Hilfe!" im Titel bringt nichts. /TKD  Was sagt denn die Console?  sys/lua/advertise.lua:12: bad argument #1 to 'msg' (string excepted, got nil) Sagt die Console^^  msg(p,"©000000255,..player(p,'name')..txt") -->
p is nil
weil es so schön einfach ist kannst es ja selber fixen    
 
tipp:
guck mal in die Funktionsparameter und dann auf den playerindex den du gewählt hast  Aha   
 
Habs raus   
 
p muss zu id werden  