Need Help with Ignoring Rules
#2

pawn Код:
if(dialogid == 2)
{
    if(response == 1) {
        if(GetPVarInt(playerid,"RulesAccepted")!=1) {
            SetPVarInt(playerid,"RulesAccepted",1);
            SetPlayerScore(playerid, GetPlayerScore(playerid) + 5);
            GivePlayerMoney(playerid, 50000);
            SendClientMessage(playerid, COLOR_GREEN, "You Accept The Rules You Recieve $500000 + 5 Score Points");
        }
        else {
            SendClientMessage(playerid, COLOR_RED, "You Already Accepted The Rules");
        }
    }
    else {
        SendClientMessage(playerid, COLOR_RED, "You Ignore The Rules");
        SendClientMessage(playerid, COLOR_RED, "You Have Been Kicked!, Reason : Ignoring The Rules");
        new name[MAX_PLAYER_NAME], string[128];
        GetPlayerName(playerid, name, sizeof(name));
        format(string, sizeof(string), "%s has been kicked for (Denied the rules)",name);
        SendClientMessageToAll(COLOR,string);
            Kick(playerid);
    }
    return 1;
}
Reply


Messages In This Thread
Need Help with Ignoring Rules - by lyrics - 14.08.2011, 04:31
Re: Need Help with Ignoring Rules - by Kitten - 14.08.2011, 04:35
Re: Need Help with Ignoring Rules - by lyrics - 14.08.2011, 04:38

Forum Jump:


Users browsing this thread: 1 Guest(s)