Disable player keys
#1

Hi guys. I made a /goafk command. I want to disable the player keys when he is afk, so the only thing he can do is typing in chat. How can i do that?

Her is what i already made:
pawn Код:
if (strcmp("/goafk", cmdtext, true, 10) == 0)
    {
        currentvw = GetPlayerVirtualWorld(playerid);
        currentcolor = GetPlayerColor(playerid);
        SetPlayerColor(playerid, COLOR_GREY);
        SetPlayerVirtualWorld(playerid, 5);
        return 1;
    }
   
    if (strcmp("/back", cmdtext, true, 10) == 0)
    {
        SetPlayerColor(playerid, currentcolor);
        SetPlayerVirtualWorld(playerid, currentvw);
        return 1;
    }
And when you type /back, keys will be enabled again.
And i added:
pawn Код:
new currentvw;
new currentcolor;
above.

Hope someone can help me. Thank you.
Reply


Messages In This Thread
Disable player keys - by sim_sima - 24.02.2011, 13:58
Re: Disable player keys - by Libra_PL - 24.02.2011, 14:02
Re: Disable player keys - by sim_sima - 24.02.2011, 14:05
Re: Disable player keys - by deather - 24.02.2011, 14:06
Re: Disable player keys - by sim_sima - 24.02.2011, 14:11

Forum Jump:


Users browsing this thread: 1 Guest(s)