Get error with script
#1

Код:
./includes/callbacks.pwn(88) : error 017: undefined symbol "string"
./includes/callbacks.pwn(88) : error 017: undefined symbol "string"
./includes/callbacks.pwn(88) : error 029: invalid expression, assumed zero
./includes/callbacks.pwn(88) : fatal error 107: too many error messages on one line
Here is problem

Код:
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
  if(PRESSED(KEY_NO))
  {
    if(IsPlayerInAnyVehicle(playerid) && GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
    {
        new engine,lights,alarm,doors,bonnet,boot,objective,vehicleid;
        vehicleid = GetPlayerVehicleID(playerid);
        if(GetVehicleModel(vehicleid) == 481 || GetVehicleModel(vehicleid) == 509 || GetVehicleModel(vehicleid) == 510 || DynVeh[vehicleid] != -1 && DynVehicleInfo[DynVeh[vehicleid]][gv_iType] == 1 && GetVehicleModel(vehicleid) == 592) return SendClientMessageEx(playerid,COLOR_WHITE,"This command can't use in this vehicle.");
        GetVehicleParamsEx(vehicleid,engine,lights,alarm,doors,bonnet,boot,objective);
        if(engine == VEHICLE_PARAMS_ON)
        {
            SetVehicleEngine(vehicleid, playerid);
            format(string, sizeof(string), "{FF8000}** {C2A2DA}%s turns the key in the ignition and the engine stops.", GetPlayerNameEx(playerid));
            ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
        }
    }
 }
return 1;
}
And here is my code... i don't know what is wrong
Reply
#2

Look at your other topic, I posted the most easy solution for starting your engine with a keypress.

Or, if you wanna keep the code you posted here, add this at the start of your callback (above "if(PRESSED(KEY_NO))"):
pawn Код:
new string[128];
The error-message told you already you didn't have "string" defined.

Or add it here:
pawn Код:
new engine,lights,alarm,doors,bonnet,boot,objective,vehicleid, string[128];
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)