[FilterScript] Simple AFK System
#12

xD.

find public OnPlayerCommandText
And do this: (pss: you can just copy paste it) :P

Код:
if(strcmp(cmdtext, "/afk", true) == 0)
	{
		TogglePlayerControllable(playerid, 0);
		new string [128];
		new pName[MAX_PLAYER_NAME];
    	GetPlayerName(playerid, pName, sizeof(pName));
    	format(string,sizeof string,"%s is afk now (Away From Keyboard).",pName);
    	SendClientMessageToAll(green, string);
    	return 1;
    }
Код:
if(strcmp(cmdtext, "/back", true) == 0)
    {
   		new string [128];
		new pName[MAX_PLAYER_NAME];
    	GetPlayerName(playerid, pName, sizeof(pName));
    	format(string,sizeof string,"%s is back now (Back To KeyBoard).",pName);
    	SendClientMessageToAll(lightblue, string);
        TogglePlayerControllable(playerid, 1);
		return 1;
	}
At the top of the script:

#define lightblue 0x00FFFFFF
#define green 0x00FF00FF
Reply


Messages In This Thread
Simple AFK System - by Markx - 04.03.2011, 19:28
Re: Simple AFK System - by Ironboy - 04.03.2011, 19:29
Re: Simple AFK System - by Markx - 04.03.2011, 19:32
Re: Simple AFK System - by Ironboy - 04.03.2011, 19:34
Re: Simple AFK System - by Markx - 04.03.2011, 19:36
Re: Simple AFK System - by Mean - 04.03.2011, 21:42
Re: Simple AFK System - by Master_Gangster - 04.03.2011, 22:26
Re: Simple AFK System - by sherlock - 04.03.2011, 23:04
Re: Simple AFK System - by Master_Gangster - 04.03.2011, 23:22
Respuesta: Simple AFK System - by Jovanny - 05.03.2011, 00:46
Re: Simple AFK System - by Markx - 05.03.2011, 07:51
Re: Simple AFK System - by bestr32 - 05.03.2011, 11:42
Re: Simple AFK System - by bestr32 - 05.03.2011, 11:44
Re: Simple AFK System - by Markx - 05.03.2011, 11:59
Re: Simple AFK System - by Shubham - 07.03.2011, 08:04
Re: Simple AFK System - by Markx - 07.03.2011, 08:10
Re: Simple AFK System - by Davz*|*Criss - 07.03.2011, 09:57
Re: Simple AFK System - by Markx - 07.03.2011, 19:36
Re: Simple AFK System - by yourdeathisnear - 08.03.2011, 19:05
Re: Simple AFK System - by Markx - 08.03.2011, 19:09
Re: Simple AFK System - by Bu$ter - 08.03.2011, 19:14
Re: Simple AFK System - by admantis - 08.03.2011, 19:22
Re: Simple AFK System - by Markx - 09.03.2011, 16:08

Forum Jump:


Users browsing this thread: 1 Guest(s)