How to fix pawno erro 35: argument type mismatch (argument 3)
#1

Код:
eSPEEDO[5] = TextDrawCreate(playerid, 508.750000, 384.416412, "~g~UNLOCKED");
?
Please help me
Reply
#2

Quote:
Originally Posted by quochuy7915
Посмотреть сообщение
Код:
eSPEEDO[5] = TextDrawCreate(playerid, 508.750000, 384.416412, "~g~UNLOCKED");
?
Please help me
you've provided too much arguments to that function.

the prototype to that function looks like
Код:
TextDrawCreate(Float:x, Float:y, text[])
there is no "playerid"

you have to delete that 1st argument and itll work

like this:
pawn Код:
eSPEEDO[5] = TextDrawCreate(508.750000, 384.416412, "~g~UNLOCKED");
Reply
#3

Thanks you so much
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)