25.03.2012, 01:33
Код:
C:\Users\Gabriel\Downloads\samp03dsvr_R2_win32\filterscripts\carmenu.pwn(37) : error 035: argument type mismatch (argument 2) Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
Код:
}
Код:
public OnPlayerCommandText(playerid, cmdtext[]) { if (strcmp("/cm", cmdtext, true, 10) == 0) { new allvehicles[] = "1\tAirplanes\n2\tHelicopters\n3\tBikes\n4\tConvertibles\n5\tIndustrial\n6\tLowriders\n7\tOffRoad\n8\tPublic Service Vehicles\n9\tSaloons\n10\tSport Vehicles\n11\tStation Wagons\n12\tBoats\n13\tUnique Vehicles\n14\tRC Vehicles\n15\tTrailers"; ShowPlayerDialog(playerid,2,DIALOG_STYLE_LIST," Veiculos: || Scroll Down for more",allvehicles,"Select","Cancel"); return 1; } if (strcmp("/dc",playerid,params[]) { DestroyVehicle(GetPlayerVehicleID(playerid)); return 1; } return 0; }