how make textdrow on admins - 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: how make textdrow on admins (
/showthread.php?tid=500839)
how make textdrow on admins -
kinggta - 15.03.2014
hello all
I need for help , for make a textdrow on admins and flashing on admins name
please help me
[sorry for by bad english]
Re: how make textdrow on admins -
MythicalMarauder - 15.03.2014
You mean 3D text above the admin's skin?
Re: how make textdrow on admins -
kinggta - 15.03.2014
yes when admin spawn other players can see admin textdraw on admin skin in game
Re: how make textdrow on admins -
amirab - 15.03.2014
first it's not textdrow , it's textdraw
second what you need is 3D text label
attach it on a player
Re: how make textdrow on admins -
kinggta - 15.03.2014
tnx my brother
Re : how make textdrow on admins -
Golimad - 15.03.2014
pawn Код:
// Add this in there
if(IsPlayerAdmin(playerid)) {
new Text3D:label = Create3DTextLabel("Administrator", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(label, playerid, 0.0, 0.0, 0.7);
}
// In OnPlayerConnect
public OnPlayerConnect(playerid)
{
// In here
return 1;
}