3Dtext Not working
#1

http://pastebin.com/GXxR9H7Z

Attach3DTextLabelToPlayer(Create3DTextLabel("Emeli e",PINK,30.0, 40.0, 50.0, 40.0, 0), playerid, 0.0, 0.0, 0.5);


C:\Documents and Settings\PhongLan\Desktop\My ModGamemode\Next generation Gaming\gamemodes\SATDM_v14.pwn(8082) : error 029: invalid expression, assumed zero


hyelp


[GAmemode]SATDM
Reply
#2

DELETED
Reply
#3

You are missing some things in this 3D Text Label.
It should be like this, for example:
pawn Код:
new Text3D:label = Create3DTextLabel("Hello, I am new here!", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
    Attach3DTextLabelToPlayer(label, playerid, 0.0, 0.0, 0.7);
    return 1;
}
Reply
#4

put this at top of OnGamemodeInit();
Код:
new Text3D:label;
And put this where u want to show this label
Код:
label = Create3DTextLabel("Emeli e", PINK, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(label, playerid, 0.0, 0.0, 0.7);
Reply
#5

thanks Hanuman REPPED
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)