Problem
#1

Well, i'm using the OnPlayerPause Include..
Now this is the part of it

PHP код:
public OnPlayerPause(playerid)
{
    new 
name[MAX_PLAYER_NAME], string[44];
    
GetPlayerName(playeridnamesizeof(name));
    
format(stringsizeof(string), "%s has Paused",name);
    
SendClientMessageToAll(COLOR_LIGHTBLUEstring);
    return 
0;
}
public 
OnPlayerUnPause(playerid)
{
    new 
name[MAX_PLAYER_NAME], string[44];
    
GetPlayerName(playeridnamesizeof(name));
    
format(stringsizeof(string), "%s has Returned",name);
    
SendClientMessageToAll(COLOR_LIGHTBLUEstring);
    return 
0;

I want to add something like if he PAUSES, it will make a 3DText above his head, and it will disappear when he comes back. I made one, but it dosen't DELETE when the player comes back. Please help, thanks
Reply


Messages In This Thread
Problem - by Aira - 29.11.2011, 11:30
Re: Problem - by English-Conceptz - 29.11.2011, 12:02
Re: Problem - by Aira - 29.11.2011, 12:10
Re: Problem - by English-Conceptz - 29.11.2011, 12:15
Re: Problem - by Thresholdold - 29.11.2011, 12:15
Re: Problem - by Aira - 29.11.2011, 14:51

Forum Jump:


Users browsing this thread: 1 Guest(s)