Jump to content
Autentificarea cu Google și Facebook nu mai este disponibilă. ×

Recommended Posts

Posted

 Dc imi da erroarea asta ?

D:\Download\virtual\gamemodes\vx-rp.pwn(38165) : error 025: function heading differs from prototype
Pawn compiler 3.2.3664              Copyright (c) 1997-2006, ITB CompuPhase


1 Error.

                                   iMZ7UqN.png

Posted (edited)

De unde sa stim daca nu avem linia cu scriptul problema :))?

Edited by KnowN

242086.png

Posted (edited)

Ar trebui sa postezi linia dar o sa  iti explica ce e cu eroare. Ai declarat o functie cu forward exemplu

forward IsACop (playerid);

Publicul trebuie sa fie asa

public IsACop (playerid)

Tu probabil ai asa publicul care este gresit

public IsACop (Playerid)

Forwardul trebuie sa fie identic cu publicul

Tu probabil ai pus litera mare, mica sau ai scris inloc de playerid,  targetud sau altceva. 

Edited by Mister

 

    __  ____      __           
   /  |/  (_)____/ /____  _____
  / /|_/ / / ___/ __/ _ \/ ___/
 / /  / / (__  ) /_/  __/ /    
/_/  /_/_/____/\__/\___/_/     
SERVICII SCRIPTING DE CALITATE
Pagina     Scripting     pawn
Posted

CMD:seatbelt(playerid, params[])
{
    if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER || GetPlayerState(playerid) == PLAYER_STATE_PASSENGER)
    {
        if(Seatbelt[playerid] == 1)
        {
            Seatbelt[playerid] = 0;
            format(szMessage, sizeof(szMessage), "** %s takes down his seatbelt.", playerVariables[playerid][pNormalName]);
            nearByMessage(playerid, COLOR_PURPLE, szMessage);
        }
        else
        {
            Seatbelt[playerid] = 1;
            format(szMessage, sizeof(szMessage), "** %s puts on his seatbelt.", playerVariables[playerid][pNormalName]);
            nearByMessage(playerid, COLOR_PURPLE, szMessage);
        }
    }
    return 1;
}

                                   iMZ7UqN.png

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.