SetTimerEx supports natives?
#1

Like:

SetTimerEx("SetPlayerPos", 5000, false, "ifff", playerid, 0, 0, 0);
Reply
#2

Why don't you try it?
Reply
#3

No, only public functions. But you can easily make wrappers like:

pawn Код:
forward @SetPlayerPos(playerid, Float:x, Float:y, Float:z);
@SetPlayerPos(playerid, Float:x, Float:y, Float:z) return SetPlayerPos(playerid, x, y, z);
pawn Код:
SetTimerEx("@SetPlayerPos", 5000, false, "ifff", playerid, 0, 0, 0);
Reply
#4

If you would want to do like SetPlayerPos you should make a public for it like

pawn Код:
foward SetPos(playerid);
public SetPos(playerid)
{
     SetPlayerPos(playerid, blblblblblblblbl);
     return 1;
}
then

SetTimerEx("SetPos", 5000, false, "ifff", playerid);
Reply


Forum Jump:


Users browsing this thread: