Robbank System Help
#9

Quote:
Originally Posted by clarencecuzz
Посмотреть сообщение
Try this one:
pawn Код:
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT

#include <a_samp>

new robbing[MAX_PLAYERS];
new alreadyrobbed[MAX_PLAYERS];
forward bankrob(playerid);
forward robbedoff(playerid);
public bankrob(playerid)
{
    SendClientMessage(playerid, COLOR_WHITE, " Your finished robbing the bank, Run now");
    GivePlayerMoney(playerid, 500000);
    PlayerInfo[playerid][pCash] = PlayerInfo[playerid][pCash]+500000;
    alreadyrobbed[playerid] = 1;
    robbing[playerid] = 0;
    SetTimerEx("robbedoff", 3600000, false, "i", playerid);
    SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
    SendClientMessageToAll(COLOR_WHITE, " It looks like the bankrobber got the cash.");
    SendClientMessageToAll(COLOR_WHITE, " The cops is currently waiting outside.");
    SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
    return 1;
}

public robbedoff(playerid)
{
    alreadyrobbed[playerid] = 0;
    SendClientMessage(playerid, COLOR_WHITE, " You can now rob the bank again");
    return 1;
}

public OnFilterScriptInit()
{
    print("\n--------------------------------------");
    print(" Blank Filterscript by your name here");
    print("--------------------------------------\n");
    return 1;
}

public OnFilterScriptExit()
{
    return 1;
}

public OnPlayerRequestClass(playerid, classid)
{
    SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
    SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
    SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
    return 1;
}

public OnPlayerConnect(playerid)
{
    robbing[playerid] = 0;
    alreadyrobbed[playerid] = 0;
    return 1;
}

public OnPlayerDisconnect(playerid, reason)
{
    return 1;
}

public OnPlayerSpawn(playerid)
{
    return 1;
}

public OnPlayerDeath(playerid, killerid, reason)
{
    return 1;
}

public OnVehicleSpawn(vehicleid)
{
    return 1;
}

public OnVehicleDeath(vehicleid, killerid)
{
    return 1;
}

public OnPlayerText(playerid, text[])
{
    return 1;
}

public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    return 1;
}

public OnPlayerExitVehicle(playerid, vehicleid)
{
    return 1;
}

public OnPlayerStateChange(playerid, newstate, oldstate)
{
    return 1;
}

public OnPlayerEnterCheckpoint(playerid)
{
    return 1;
}

public OnPlayerLeaveCheckpoint(playerid)
{
    return 1;
}

public OnPlayerEnterRaceCheckpoint(playerid)
{
    return 1;
}

public OnPlayerLeaveRaceCheckpoint(playerid)
{
    return 1;
}

public OnRconCommand(cmd[])
{
    return 1;
}

public OnPlayerRequestSpawn(playerid)
{
    return 1;
}

public OnObjectMoved(objectid)
{
    return 1;
}

public OnPlayerObjectMoved(playerid, objectid)
{
    return 1;
}

public OnPlayerPickUpPickup(playerid, pickupid)
{
    return 1;
}

public OnVehicleMod(playerid, vehicleid, componentid)
{
    return 1;
}

public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
{
    return 1;
}

public OnVehicleRespray(playerid, vehicleid, color1, color2)
{
    return 1;
}

public OnPlayerSelectedMenuRow(playerid, row)
{
    return 1;
}

public OnPlayerExitedMenu(playerid)
{
    return 1;
}

public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
{
    return 1;
}

public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
{
    return 1;
}

public OnRconLoginAttempt(ip[], password[], success)
{
    return 1;
}

public OnPlayerUpdate(playerid)
{
    return 1;
}

public OnPlayerStreamIn(playerid, forplayerid)
{
    return 1;
}

public OnPlayerStreamOut(playerid, forplayerid)
{
    return 1;
}

public OnVehicleStreamIn(vehicleid, forplayerid)
{
    return 1;
}

public OnVehicleStreamOut(vehicleid, forplayerid)
{
    return 1;
}

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
    return 1;
}

public OnPlayerClickPlayer(playerid, clickedplayerid, source)
{
    return 1;
}

public OnPlayerCommandText(playerid, cmdtext[])
{
    if(strcmp(cmd, "/robbank", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(robbing[playerid] == 1)
            {
                SendClientMessage(playerid, COLOR_GREY, " You are already robbing the bank, please slow down");
                return 1;
            }
            if(alreadyrobbed[playerid] == 1)
            {
                SendClientMessage(playerid, COLOR_WHITE, "You already robbed the bank! Wait 1 hour.");
                return 1;
            }
            if(!IsPlayerInRangeOfPoint(playerid, 5.0, 2308.8071,-13.2485,26.7422)) // Change X Y Z to the location you want
            {
                SendClientMessage(playerid, COLOR_GREY, "   You are not at the bank !");
                return 1;
            }
            SendClientMessage(playerid, COLOR_WHITE, " You started to rob the bank, This will take 10 minutes");
            SetTimerEx("bankrob", 600000, false, "i", playerid);
            robbing[playerid] = 1;
            SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
            SendClientMessageToAll(COLOR_WHITE, " The bank is currently getting robbed.");
            SendClientMessageToAll(COLOR_WHITE, " We are currently waiting for the cops");
            SendClientMessageToAll(COLOR_WHITE, " We will report more when we get more information");
            SendClientMessageToAll(COLOR_ORANGE, "||----------Latest News----------||");
            return 1;
        }
    }
    return 0;
}
strcmp command functions are supposed to be placed under the public OnPlayerCommandText. In this case, you had it under no public functions. I have also fixed some indentation and tried to make it as error-proof as possible. Once again I'm using notepad, so if I got something wrong, sorry.
np bro but igot some errors
when used ur codes
Код:
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(1) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(3) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(6) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(8) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(11) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(13) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(16) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(19) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(20) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(22) : error 025: function heading differs from prototype
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(23) : error 025: function heading differs from prototype
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(24) : error 025: function heading differs from prototype
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(25) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(26) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(33) : error 027: invalid character constant
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(35) : error 010: invalid function or declaration
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(40) : error 010: invalid function or declaration
D:\Sa-mp test server\pawno\include\a_samp.inc(57) : error 025: function heading differs from prototype
D:\Sa-mp test server\pawno\include\a_samp.inc(57) : error 025: function heading differs from prototype
D:\Sa-mp test server\pawno\include\a_samp.inc(58) : error 025: function heading differs from prototype
D:\Sa-mp test server\pawno\include\a_samp.inc(58) : error 025: function heading differs from prototype
D:\Sa-mp test server\pawno\include\a_samp.inc(65) : error 025: function heading differs from prototype
D:\Sa-mp test server\pawno\include\a_samp.inc(65) : error 025: function heading differs from prototype
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(56) : error 017: undefined symbol "COLOR_WHITE"
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(58) : error 017: undefined symbol "PlayerInfo"
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(58) : warning 215: expression has no effect
D:\Sa-mp test server\filterscripts\robbanksystem.pwn(58) : error 001: expected token: ";", but found "]"

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


26 Errors.
Reply


Messages In This Thread
Robbank System Help - by adelmika - 25.09.2012, 21:28
Re: Robbank System Help - by jop9888 - 25.09.2012, 21:34
Re: Robbank System Help - by adelmika - 25.09.2012, 21:38
Re: Robbank System Help - by jop9888 - 25.09.2012, 21:44
Re: Robbank System Help - by adelmika - 25.09.2012, 21:45
Re: Robbank System Help - by jop9888 - 25.09.2012, 21:50
Re: Robbank System Help - by adelmika - 25.09.2012, 21:56
Re: Robbank System Help - by clarencecuzz - 26.09.2012, 00:49
Re: Robbank System Help - by adelmika - 26.09.2012, 22:16
Re: Robbank System Help - by West X - 26.09.2012, 22:23

Forum Jump:


Users browsing this thread: 4 Guest(s)