SA-MP Forums Archive
help me - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: help me (/showthread.php?tid=610153)



help me - JuzDoiT - 20.06.2016

Textdraws instead of GameTextForPlayer

can someone give me textdraw . but gametextforplayer funcsion.. please


Re: help me - sKJaoSAMP - 20.06.2016

GameTextForPlayer

Quote:
public OnPlayerDeath(playerid, killerid, reason)
{
GameTextForPlayer(playerid, "You Died", 5000, 2);
return 1;
}






TextDrawCreate
Quote:
new Text:TextWelcome;

public OnGameModeInit()
{

TextWelcome = TextDrawCreate(240.0,580.0,"Welcome to Forum SA:MP");
return 1;
}

public OnPlayerConnect(playerid)
{
TextDrawShowForPlayer(playerid,TextWelcome);
}


What you wanted to say?