New Function error
#6

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


Messages In This Thread
New Function error - by Battlezone - 26.01.2014, 18:21
Re: New Function error - by Scottas - 26.01.2014, 19:17
Re : New Function error - by Battlezone - 27.01.2014, 10:51
Re: New Function error - by Misiur - 27.01.2014, 10:53
Re : Re: New Function error - by Battlezone - 27.01.2014, 10:58
Re: New Function error - by Misiur - 27.01.2014, 11:00
Re : Re: New Function error - by Battlezone - 27.01.2014, 11:03

Forum Jump:


Users browsing this thread: 1 Guest(s)