DeletePlayer3DTextLabel
#15

dude one minute please see that u add new Text3D:afk[MAX_PLAYERS]; at top then what mistake you have done is

you have added new "Text3D:afk" in the command /afk. just remove the new

heres the code
pawn Code:
new Text3D: afk[MAX_PLAYERS]; // at your top of script

COMMAND:afk(playerid, params[])
{
     new string[128], playerName[MAX_PLAYER_NAME];
     GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
     format(string, sizeof(string), "SERVER:%s is now in afk mode!", playerName);
     SendClientMessageToAll(blue, string);
     Text3D:afk = Create3DTextLabel("Player is afk!", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
    Attach3DTextLabelToPlayer(afk, playerid, 0.0, 0.0, 0.7);
    TogglePlayerControllable(playerid, 0);
    return 1;
}
COMMAND:back(playerid, params[])
{
     new string[128], playerName[MAX_PLAYER_NAME];
     GetPlayerName(playerid, playerName, MAX_PLAYER_NAME);
     format(string, sizeof(string), "SERVER:%s has came back from being afk!", playerName);
     SendClientMessageToAll(blue, string);
     TogglePlayerControllable(playerid, 1);
     DeletePlayer3DTextLabel(playerid, Text3D:afk);
     return 1;
}
Hope It Helped
Reply


Messages In This Thread
DeletePlayer3DTextLabel - by tyler12 - 13.04.2012, 09:31
Re: DeletePlayer3DTextLabel - by Cjgogo - 13.04.2012, 09:36
Re: DeletePlayer3DTextLabel - by tyler12 - 13.04.2012, 09:37
Re: DeletePlayer3DTextLabel - by Hoss - 13.04.2012, 09:38
Re: DeletePlayer3DTextLabel - by tyler12 - 13.04.2012, 09:41
Re: DeletePlayer3DTextLabel - by Twisted_Insane - 13.04.2012, 10:29
Re: DeletePlayer3DTextLabel - by sampmark05 - 13.04.2012, 10:58
Re: DeletePlayer3DTextLabel - by taborda11 - 13.04.2012, 11:04
Re: DeletePlayer3DTextLabel - by sampmark05 - 13.04.2012, 11:05
Re: DeletePlayer3DTextLabel - by tyler12 - 13.04.2012, 12:26
Re: DeletePlayer3DTextLabel - by Twisted_Insane - 13.04.2012, 12:45
Re: DeletePlayer3DTextLabel - by tyler12 - 13.04.2012, 14:55
Re: DeletePlayer3DTextLabel - by Jochemd - 13.04.2012, 14:57
Re: DeletePlayer3DTextLabel - by Sasino97 - 13.04.2012, 15:03
Re: DeletePlayer3DTextLabel - by Torus - 13.04.2012, 15:03
Re: DeletePlayer3DTextLabel - by Sasino97 - 13.04.2012, 15:09
Re: DeletePlayer3DTextLabel - by Torus - 13.04.2012, 15:12
Re: DeletePlayer3DTextLabel - by tyler12 - 13.04.2012, 18:00

Forum Jump:


Users browsing this thread: 1 Guest(s)