23.05.2016, 15:51
Try to understand your mistake.
Like he said, you have forget the ANGLE.
Also check this :
Quote:
thats because the function "AddPlayerClass " in this case, uses 11 arguments but you have 10 arguments so change it.
You have: pawn Код:
pawn Код:
|
PHP код:
// Correct :
AddPlayerClass(0, Float:x ,Float:y,Float:z, Float:Angle, 0, 0, 0, 0, 0, 0);
// False :
AddPlayerClass(0, Float:x ,Float:y,Float:z, 0, 0, 0, 0, 0, 0);
Quote: