23.05.2011, 15:09
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
print("execed1");
if(strcmp("/tpse", cmdtext, true, 10) == 0) {
print("execed2");
if(GetPVarInt(playerid,"LoggedIn") == 0 && !IsPlayerAdmin(playerid)) {
print("execed3");
return DialogLogin(playerid);
} else {
print("execed4");
return DialogMenu(playerid);
}
print("execed5");
return 1;
}
print("execed6");
return 0;
}
Wtf?
P.S.: This is a filterscript. I tried to reload it too..