make gametextforplayer smaller?
#5

Quote:
Originally Posted by SAMProductions
Посмотреть сообщение
You can do it by using Textdraw

Try This :-

New Variable,
Код:
new Text:WastedTextDraw;
On OnGameModeInit Callback,
pawn Код:
public OnGameModeInit()
{
    WastedTextDraw = TextDrawCreate(190.0, 190.0, "WASTED");
    return 1;
}
On OnPlayerDeath Callback,
pawn Код:
public OnPlayerDeath(playerid, killerid, reason)
{
    TextDrawShowForPlayer(playerid, WastedTextDraw);
    return 1;
}
On OnPlayerSpawn Callback,
pawn Код:
public OnPlayerSpawn(playerid)
{
   TextDrawHideForPlayer(playerid, WastedTextDraw);
   return 1;
}
Hi I think you didn't noticed my previous post. Please kindly read. Thanks. And also additional, there will be a timer.
Reply


Messages In This Thread
make gametextforplayer smaller? - by kbalor - 10.11.2013, 04:17
Re: make gametextforplayer smaller? - by SAMProductions - 10.11.2013, 04:20
Re: make gametextforplayer smaller? - by kbalor - 10.11.2013, 04:25
Re: make gametextforplayer smaller? - by SAMProductions - 10.11.2013, 04:30
Re: make gametextforplayer smaller? - by kbalor - 10.11.2013, 04:36
Re: make gametextforplayer smaller? - by SAMProductions - 10.11.2013, 04:40
Re: make gametextforplayer smaller? - by kbalor - 10.11.2013, 04:48
Re: make gametextforplayer smaller? - by SAMProductions - 10.11.2013, 04:53
Re: make gametextforplayer smaller? - by kbalor - 10.11.2013, 04:56
Re: make gametextforplayer smaller? - by Zex Tan - 10.11.2013, 04:57

Forum Jump:


Users browsing this thread: 1 Guest(s)