17.05.2011, 17:57
(
Last edited by Raimis_R; 18/05/2011 at 07:10 PM.
)
I was searching something like this about 2 weeks.
Thanks RyDeR`!
Edit: where i can read about amx functions or something ho can help in dev plugin.
Like ur
Where i can find like __IsPlayerConnected or this like stock in pawn?
Thanks RyDeR`!
Edit: where i can read about amx functions or something ho can help in dev plugin.
Like ur
pawn Code:
int __IsPlayerConnected(int playerid, AMX *amx) // AMX *amx must stay but it's just the playerid parameter that counts in his function.
{
int
index
;
if(!amx_FindPublic(amx, "__IsPlayerConnected", &index))
{
cell
retVal
;
amx_Push(amx, playerid);
amx_Exec(amx, &retVal, index);
return (int)retVal;
}
return -1;
}