#7

Quote:
Originally Posted by Dan_Barocu
Посмотреть сообщение
can someone help me??or all of you are selfish
Erm.. don't tell things about others. I already gave the code I fixed and I told you that you can not use
pawn Код:
if(PRESSED..// More
OnPlayerStateChange callback but OnPlayerKeyStateChange
pawn Код:
#define RELEASED(%0) \
    (((newkeys & (%0)) != (%0)) && ((oldkeys & (%0)) == (%0)))
// PRESSED(keys)
#define PRESSED(%0) \
    (((newkeys & (%0)) == (%0)) && ((oldkeys & (%0)) != (%0)))
//-------------------------------------------------

public OnFilterScriptInit()
{
    return 1;
}
//-------------------------------------------------

public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    if(PRESSED(KEY_ACTION)) {
        if(IsPlayerInAnyVehicle(playerid)) {
            new vehid = GetPlayerVehicleID(playerid);
            // warning 204: symbol is assigned a value that is never used: "vehid"
            // You have to use it somewhere and it will compile without warnings too as without errors.
            for(new i = 0; i<MAX_PLAYERS; i++) {
                // Code Here
            }
        }
        else if(RELEASED(KEY_ACTION)) {
                // Code Here
        }
    }
    return 1;
}
//-------------------------------------------------

public OnPlayerUpdate(playerid)
{
    if(!IsPlayerConnected(playerid)) return 0;
    if(IsPlayerNPC(playerid)) return 1;

    // Handle playing SomaFM at the alhambra
    if(GetPlayerInterior(playerid) == 17) {
        if(IsPlayerInRangeOfPoint(playerid,70.0,489.5824,-14.7563,1000.6797)) { // alhambra middle
            if(!GetPVarInt(playerid,"alhambra")) {
                SetPVarInt(playerid,"alhambra",1);
                PlayAudioStreamForPlayer(playerid, "http://somafm.com/tags.pls",480.9575,-3.5402,1002.0781,40.0,true);
            }
        }
    }
    else {
        if(GetPVarInt(playerid,"alhambra")) {
            DeletePVar(playerid,"alhambra");
            StopAudioStreamForPlayer(playerid);
        }
    }

    return 1;
}

//-------------------------------------------------
Reply


Messages In This Thread
Help - by Dan_Barocu - 03.01.2012, 17:08
Re: Help - by Dan_Barocu - 03.01.2012, 17:13
Re: Help - by Konstantinos - 03.01.2012, 17:25
Re: Help - by Dan_Barocu - 03.01.2012, 17:36
Re: Help - by Dan_Barocu - 03.01.2012, 17:52
Re: Help - by Dan_Barocu - 03.01.2012, 18:13
Re: Help - by Konstantinos - 03.01.2012, 18:28
Re: Help - by Dan_Barocu - 03.01.2012, 21:24
Re: Help - by Dan_Barocu - 03.01.2012, 21:40
Re: Help - by geerdinho8 - 03.01.2012, 21:48

Forum Jump:


Users browsing this thread: 4 Guest(s)