uh... server = my pc with windows xp sp3
i doubt that has much to do with it though..
the weird this is that i have another similar script (listplayers) where the "return 1" works on my computer, but fails on mostafa's computer. weird...
addhook("say","lp")
function lp(p,txt)
if (txt=="listplayers") then
msg2(p, "ID - Name - IP Address - USGN ID")
for i=1,32 do
if (player(i,"exists")) then
msg2(p, i.." - "..player(i,"name").." - "..player(i,"ip").." - "..player(i,"usgn"))
end
end
return 1
end
end