Texdraw Help +rep
#1

I need help with texdraws so when player join an area like /aa texdraw will show that player joined /aa, giving +rep
Reply
#2

What You are saying?
Reply
#3

texdraw need to show when player join some area Dm,Stunt or something else LOL
Reply
#4

If you know how to create the TextDraw then just add the script to the command, instead of OnGameModeInit.
Reply
#5

I'm not sure what you really mean. If this is not your answer. Well kindly explained it a little bit more clear.

pawn Код:
CMD:aa(playerid, params[])
{
    SetPlayerPos(playerid, 380.5123,2544.0908,21.0001);
    SetPlayerInterior(playerid, 0);
    SetPlayerVirtualWorld(playerid, 0);
    new string[128], pName[MAX_PLAYER_NAME];
    GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
    format(string, sizeof(string), " %s has Teleported to Abandoned Airport (/aa)",pName);
    SendClientMessageToAll(COLOR_WHITE, string);
    return 1;
}
Reply
#6

You want that Text Draw to get seen by everyone in the server?

@.V: My friend he says he wants a TextDraw not a client message
Reply
#7

https://sampwiki.blast.hk/wiki/CreatePlayerTextDraw
Thats all you will need.
Reply
#8

well i know 50/50 give me an example pls.
Reply
#9

Follow me
Код:
Put this next after set player postion :D | 
"
new string[18];
    format(string, sizeof(string), "Welcome To /AA ");
    GameTextForPlayer(playerid, string, 1000, 0);
    return 1;
}
// Text on Chat :) [ Color = Red ]

GetPlayerName(playerid, Name, sizeof(Name));
format(String,sizeof(String),"Welcome to {FF0000}/AA{00FF00}%s",Name[playerid]);
 SendClientMessageToAll(playerid,0xFF0000FF,String);
Tell me if it work
Reply
#10

Quote:
Originally Posted by gtakillerIV
Посмотреть сообщение
You want that Text Draw to get seen by everyone in the server?

@.V: My friend he says he wants a TextDraw not a client message
yes i want texdraw to create not clienmessage
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)