2021-04-15, 10:48 PM
(This post was last modified: 2021-04-15, 10:55 PM by PutuSuhartawan.)
PlayerTextDrawSetString(playerid, g_ePlayerMenuData[playerid][g_eMenuHeaderText], header); //line 124
Sir. ShowModelSelectionMenuTextDraws just using two variables. not three. and the type variable just string need array.
Basically, "argument type mismatch" means that you're inserting 1 type of argument into
a function which needs to receive an argument of different type.
For example: you will get this error if you input a integer into a function that requires a string.
Sir. ShowModelSelectionMenuTextDraws just using two variables. not three. and the type variable just string need array.
Basically, "argument type mismatch" means that you're inserting 1 type of argument into
a function which needs to receive an argument of different type.
For example: you will get this error if you input a integer into a function that requires a string.