27.01.2014, 11:00
Oh, sorry, I only saw your second question. You have to remove all Float:Variable before stuff in function calls, so instead:
it has to be
Reason is identical as with text - Float is indicator of variable type while declaring it, or accepting as an argument.
pawn Код:
CreatePickup(model, type, Float:X, Float:Y, Float:Z, Virtualworld);
Create3DTextLabel(text, color, Float:X, Float:Y, Float:Z+0.75, 0, Virtualworld, 1);
pawn Код:
CreatePickup(model, type, X, Y, Z, Virtualworld);
Create3DTextLabel(text, color, X, Y, Z+0.75, 0, Virtualworld, 1);