SA-MP Forums Archive
Tabbed help - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Tabbed help (/showthread.php?tid=442211)



Tabbed help - yaron0600 - 06.06.2013

How can I write up on player [Tabbed] - When he's tabbing here :

Код:
forward AFKick(playerid);
public AFKick(playerid)
{
	if(playerTabbed[playerid] != 0)
	{
 		playerTabbedTime[playerid]++;
 		SetTimerEx("AFKick",1000,false,"d",playerid);
	}
	return 1;
}



Re: Tabbed help - Avi57 - 06.06.2013

use this :-
pawn Код:
forward AFKick(playerid);
public AFKick(playerid)
{
    if(playerTabbed[playerid] != 0)
    {
        playerTabbedTime[playerid]++;
        SetTimerEx("AFKick",1000,false,"d",playerid);
                new Text3D:tabbed = Create3DTextLabel("Tabbed",-1, 30.0, 40.0, 50.0, 40.0, 0);
    }
    return 1;
}