Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Pizzzzzzaaaaaaa....Yooohoooo
- #include <a_samp> // Include
- new PizzaJob[256]; // PizzaBoy Job
- public OnPlayerCommandText(playerid, cmdtext[])
- {
- if (strcmp("/pizza", cmdtext, true, 10) == 0)
- {
- if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 448)
- {
- PizzaJob[playerid] = 1;
- new name[MAX_PLAYER_NAME], string[48];
- GetPlayerName(playerid, name, sizeof(name));
- format(string, sizeof(string), "{CE0000}%s is now a Pizzaboy.", name );
- SendClientMessageToAll(-1, string);
- SetPlayerCheckpoint(playerid, 2012.6134,-1729.3796,13.1536,10);
- SendClientMessage(playerid, -1,"{CE0000}Job: Follow the red markers");
- return 1;
- }
- SendClientMessage(playerid, -1,"{CE0000}You have to be on a pizza bike to start the job!");
- }
- return 0;
- }
- public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
- {
- if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 448)
- {
- SendClientMessage(playerid, -1, "{CE0000}Job: You can start the Pizzaboy job by using {00FF00}/pizza");
- }
- return 0;
- }
- public OnPlayerEnterCheckpoint(playerid)
- {
- if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 448)
- {
- if(PizzaJob[playerid] == 1){
- PizzaJob[playerid] = 2;
- SetPlayerCheckpoint(playerid, 2012.4771,-1640.1229,13.1431,10);
- return 1;
- }
- if(PizzaJob[playerid] == 2){
- PizzaJob[playerid] = 3;
- SetPlayerCheckpoint(playerid, 2387.0063,-1667.1498,13.1249,10);
- return 1;
- }
- if(PizzaJob[playerid] == 3){
- PizzaJob[playerid] = 4;
- SetPlayerCheckpoint(playerid, 2414.9255,-1649.6678,13.1305,10);
- return 1;
- }
- if(PizzaJob[playerid] == 4){
- PizzaJob[playerid] = 5;
- SetPlayerCheckpoint(playerid, 2517.6394,-1678.3141,13.9862,10);
- return 1;
- }
- if(PizzaJob[playerid] == 5){
- PizzaJob[playerid] = 6;
- SetPlayerCheckpoint(playerid, 2441.1526,-2017.4093,13.1231,10);
- return 1;
- }
- if(PizzaJob[playerid] == 6){
- PizzaJob[playerid] = 7;
- SetPlayerCheckpoint(playerid, 2486.2058,-2017.6384,13.1309,10);
- return 1;
- }
- if(PizzaJob[playerid] == 7){
- PizzaJob[playerid] = 8;
- SetPlayerCheckpoint(playerid, 2520.9238,-2016.4714,13.1395,10);
- return 1;
- }
- if(PizzaJob[playerid] == 8){
- PizzaJob[playerid] = 9;
- SetPlayerCheckpoint(playerid, 2464.7258,-2000.3944,13.1430,10);
- return 1;
- }
- if(PizzaJob[playerid] == 9){
- PizzaJob[playerid] = 10;
- SetPlayerCheckpoint(playerid, 2240.8374,-1886.9504,13.1486,10);
- return 1;
- }
- if(PizzaJob[playerid] == 10){
- PizzaJob[playerid] = 11;
- SetPlayerCheckpoint(playerid, 2095.5488,-1815.7517,12.9792,10);
- return 1;
- }
- if(PizzaJob[playerid] == 11){
- PizzaJob[playerid] = 0;
- DisablePlayerCheckpoint(playerid);
- SendClientMessage(playerid, -1,"{CE0000}Job: You have recieved $300000 for delivering the pizzas");
- GivePlayerMoney(playerid,-300000);
- }
- }
- return 1;
- }
- public OnPlayerExitVehicle(playerid, vehicleid)
- {
- if(PizzaJob[playerid] > 0)
- {
- PizzaJob[playerid] = 0;
- SendClientMessage(playerid, -1, "{CE0000}Job: You have left your job");
- DisablePlayerCheckpoint(playerid);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment