[FilterScript] Easy AFK/BRB
#1

Hello SA-MP Forum Users, ;'d
I made a easy Filterscript...
Also Players can't abuse this script if they typ /afk you still can lose HP when you not tabbed etc,
Just look at the script

Download (AMX+PWN)
http://dl.dropbox.com/u/75302440/AfkBRBFs.rar
http://www.2shared.com/file/nOalz9ew/AfkBRBFs.html

Code:
CMD:afk(playerid, params [])
{
    new string[129], pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
    SendClientMessage(playerid, COLOR_WHITE, "You are now AFK.");
    format(string,sizeof string, "%s is now AFK (Away From Keyboard).",pName);
    SendClientMessageToAll(0xFF0000AA,string);
    TogglePlayerControllable(playerid, 0);
    return 1;
}

CMD:brb(playerid, params [])
{
    new string[129], pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
    SendClientMessage(playerid, COLOR_WHITE, "You are now BRB.");
    format(string,sizeof string, "%s is now BRB (Be Right Back).",pName);
    SendClientMessageToAll(0xFF0000AA,string);
    TogglePlayerControllable(playerid, 0);
    return 1;
}

CMD:back(playerid, params [])
{
    new string[129], pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid,pName,MAX_PLAYER_NAME);
    SendClientMessage(playerid, COLOR_WHITE, "You are no longer AFK/BRB.");
    format(string,sizeof string, "%s is no longer AFK/BACK.",pName);
    SendClientMessageToAll(0xFF0000AA,string);
    TogglePlayerControllable(playerid, 1);
    return 1;
}
Reply


Messages In This Thread
Easy AFK/BRB - by Kathleen - 25.05.2012, 21:13
Re: Easy AFK/BRB - by irfu - 26.05.2012, 04:40
Re: Easy AFK/BRB - by Kathleen - 26.05.2012, 08:22
Re: Easy AFK/BRB - by Tuntun - 26.05.2012, 08:29
Re: Easy AFK/BRB - by Kathleen - 26.05.2012, 10:21
Re: Easy AFK/BRB - by x96664 - 26.05.2012, 12:34
Re: Easy AFK/BRB - by Kathleen - 26.05.2012, 13:27
Re: Easy AFK/BRB - by Tuntun - 26.05.2012, 17:25
Re: Easy AFK/BRB - by Kathleen - 26.05.2012, 19:10
Re: Easy AFK/BRB - by KINGINA - 26.05.2012, 19:37
Re: Easy AFK/BRB - by Kathleen - 26.05.2012, 20:46
Re: Easy AFK/BRB - by Kathleen - 27.05.2012, 09:54
Re: Easy AFK/BRB - by Private200 - 27.05.2012, 19:57
Re: Easy AFK/BRB - by S_ILYa™ - 28.05.2012, 03:36
Re: Easy AFK/BRB - by sienal - 28.05.2012, 06:35
Re: Easy AFK/BRB - by FearLe$$ - 28.05.2012, 06:52
Re: Easy AFK/BRB - by Kathleen - 28.05.2012, 12:32
Re: Easy AFK/BRB - by faff - 28.05.2012, 16:58
Re: Easy AFK/BRB - by Tuntun - 14.06.2012, 14:23
Re: Easy AFK/BRB - by Robert West - 16.07.2012, 09:38
Re: Easy AFK/BRB - by XStormiest - 16.07.2012, 10:26
Re: Easy AFK/BRB - by Kathleen - 17.07.2012, 18:53
Re: Easy AFK/BRB - by Dasharkishanjan5 - 28.07.2012, 18:24
Re: Easy AFK/BRB - by McMuffin - 17.03.2013, 11:07

Forum Jump:


Users browsing this thread: 1 Guest(s)