Little Help With 3d Text
#1

Hmmm i am New Comer On Samp and i start to making a server ( I'm also Learning Pwno But On Starting I Need Litte help )

Here Is The Problem i want to add 3dtextlebal On player head like when they type /mytext TEXT
then text will show on player Head

Like This text BUT ON HEAD

Reply
#2

Add this under OnPlayerText:
Код:
SetPlayerChatBubble( playerid, text, 0xFFFFFFFF, 200.0, 10000);
Reply
#3

how to make it like a command ?

/mytext Text ?

under OnPlayerCommandText
Reply
#4

this is one way to do it:
Код:
CMD:mytext(playerid, params[])
{
	if(!IsPlayerLoggedIn(playerid)) return SendClientMessage(playerid, COLOR_GREY, "You need to login first before using any command.");
	if(sscanf(params, "s[128]", params)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /mytext [text]");
	SetPlayerChatBubble( playerid, params, 0xFFFFFFFF, 200.0, 10000);
	return 1;
Also this type of command is zcmd. You can find more about it here if you like
Reply
#5

+1 rep

but its Not working
Reply
#6

Not working
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)