| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437 |
- /*
- /$$ /$$ /$$$$$$ /$$$$$$$ /$$$$$$$
- | $$$ | $$ /$$__ $$ | $$__ $$| $$__ $$
- | $$$$| $$| $$ \__/ | $$ \ $$| $$ \ $$
- | $$ $$ $$| $$ /$$$$ /$$$$$$| $$$$$$$/| $$$$$$$/
- | $$ $$$$| $$|_ $$|______/| $$__ $$| $$____/
- | $$\ $$$| $$ \ $$ | $$ \ $$| $$
- | $$ \ $$| $$$$$$/ | $$ | $$| $$
- |__/ \__/ \______/ |__/ |__/|__/
- Dynamic PaynSpray System
- Next Generation Gaming, LLC
- (created by Next Generation Gaming Development Team)
-
- * Copyright (c) 2016, Next Generation Gaming, LLC
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without modification,
- * are not permitted in any case.
- *
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- forward PayNSpray(playerid, id, vehicleid);
- public PayNSpray(playerid, id, vehicleid)
- {
- if(DynVeh[vehicleid] != -1 && DynVehicleInfo[DynVeh[vehicleid]][gv_igID] != INVALID_GROUP_ID)
- {
- new iGroupID = DynVehicleInfo[DynVeh[vehicleid]][gv_igID];
- if(arrGroupData[iGroupID][g_iBudget] >= PayNSprays[id][pnsGroupCost])
- {
- arrGroupData[iGroupID][g_iBudget] -= PayNSprays[id][pnsGroupCost];
- new str[128];
- format(str, sizeof(str), "%s has repaired vehicle %d at a cost of $%s to %s's budget fund.", GetPlayerNameEx(playerid), GetPlayerVehicleID(playerid), number_format(PayNSprays[id][pnsGroupCost]), arrGroupData[iGroupID][g_szGroupName]);
- GroupPayLog(iGroupID, str);
- SendClientMessageEx(playerid, COLOR_GREY, "This is a group vehicle and the repair cost has been paid by your agency.");
- }
- else
- {
- SendClientMessage(playerid, COLOR_WHITE, "Your agency does not have enough money in their funds to pay for this!");
- TogglePlayerControllable(playerid, 1);
- return 1;
- }
- }
- else
- {
- if(PlayerInfo[playerid][pCash] >= PayNSprays[id][pnsRegCost])
- {
- GivePlayerCash(playerid, -PayNSprays[id][pnsRegCost]);
- }
- else
- {
- SendClientMessage(playerid, COLOR_WHITE, "You don't have enough money to pay for this!");
- TogglePlayerControllable(playerid, 1);
- return 1;
- }
- }
- RepairVehicle(vehicleid);
- Vehicle_Armor(vehicleid);
- if(IsTrailerAttachedToVehicle(vehicleid))
- {
- RepairVehicle(GetVehicleTrailer(vehicleid));
- Vehicle_Armor(GetVehicleTrailer(vehicleid));
- }
- SendClientMessage(playerid, COLOR_WHITE, "Your vehicle has been repaired!");
- PlayerPlaySound(playerid,1133,0.0,0.0,0.0);
- TogglePlayerControllable(playerid, 1);
- return 1;
- }
- CMD:pnsedit(playerid, params[])
- {
- if(PlayerInfo[playerid][pAdmin] < 4 && PlayerInfo[playerid][pASM] < 1)
- {
- SendClientMessageEx(playerid, COLOR_GRAD2, "You are not authorized to use that command.");
- return 1;
- }
- new string[128], choice[32], id, amount;
- if(sscanf(params, "s[32]dD", choice, id, amount))
- {
- SendClientMessageEx(playerid, COLOR_GREY, "USAGE: /pnsedit [name] [id] [amount]");
- SendClientMessageEx(playerid, COLOR_GREY, "Available names: Position, GroupCost, RegCost, Delete");
- return 1;
- }
- if(id >= MAX_PAYNSPRAYS)
- {
- SendClientMessageEx(playerid, COLOR_WHITE, "Invalid Pay N' Spray ID!");
- return 1;
- }
- if(strcmp(choice, "position", true) == 0)
- {
- if(PayNSprays[id][pnsStatus] == 0)
- {
- PayNSprays[id][pnsStatus] = 1;
- }
- GetPlayerPos(playerid, PayNSprays[id][pnsPosX], PayNSprays[id][pnsPosY], PayNSprays[id][pnsPosZ]);
- PayNSprays[id][pnsInt] = GetPlayerInterior(playerid);
- PayNSprays[id][pnsVW] = GetPlayerVirtualWorld(playerid);
- format(string, sizeof(string), "You have changed the position on Pay N' Spray #%d.", id);
- SendClientMessageEx(playerid, COLOR_WHITE, string);
- DestroyDynamicPickup(PayNSprays[id][pnsPickupID]);
- DestroyDynamic3DTextLabel(PayNSprays[id][pnsTextID]);
- DestroyDynamicMapIcon(PayNSprays[id][pnsMapIconID]);
- format(string, sizeof(string), "/repaircar\nRepair Cost -- Regular: $%s | Faction: $%s\nID: %d", number_format(PayNSprays[id][pnsRegCost]), number_format(PayNSprays[id][pnsGroupCost]), id);
- PayNSprays[id][pnsTextID] = CreateDynamic3DTextLabel(string, COLOR_RED, PayNSprays[id][pnsPosX], PayNSprays[id][pnsPosY], PayNSprays[id][pnsPosZ]+0.5,10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 1, PayNSprays[id][pnsVW], PayNSprays[id][pnsInt], -1);
- PayNSprays[id][pnsPickupID] = CreateDynamicPickup(1239, 23, PayNSprays[id][pnsPosX], PayNSprays[id][pnsPosY], PayNSprays[id][pnsPosZ], PayNSprays[id][pnsVW]);
- PayNSprays[id][pnsMapIconID] = CreateDynamicMapIcon(PayNSprays[id][pnsPosX], PayNSprays[id][pnsPosY], PayNSprays[id][pnsPosZ], 63, 0, PayNSprays[id][pnsVW], PayNSprays[id][pnsInt], -1, 500.0);
- SavePayNSpray(id);
- format(string, sizeof(string), "%s has edited Pay N' Spray ID %d's position.", GetPlayerNameEx(playerid), id);
- Log("logs/pnsedit.log", string);
- return 1;
- }
- else if(strcmp(choice, "groupcost", true) == 0)
- {
- if(PayNSprays[id][pnsStatus] == 0)
- {
- format(string, sizeof(string), "Pay N' Spray #%d does not exist.", id);
- SendClientMessageEx(playerid, COLOR_WHITE, string);
- return 1;
- }
- PayNSprays[id][pnsGroupCost] = amount;
- format(string, sizeof(string), "You have changed the group cost for Pay N' Spray #%d to $%s.", id, number_format(amount));
- SendClientMessageEx(playerid, COLOR_WHITE, string);
- DestroyDynamic3DTextLabel(PayNSprays[id][pnsTextID]);
- format(string, sizeof(string), "/repaircar\nRepair Cost -- Regular: $%s | Faction: $%s\nID: %d", number_format(PayNSprays[id][pnsRegCost]), number_format(PayNSprays[id][pnsGroupCost]), id);
- PayNSprays[id][pnsTextID] = CreateDynamic3DTextLabel(string, COLOR_RED, PayNSprays[id][pnsPosX], PayNSprays[id][pnsPosY], PayNSprays[id][pnsPosZ]+0.5,10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 1, PayNSprays[id][pnsVW], PayNSprays[id][pnsInt], -1);
- SavePayNSpray(id);
- format(string, sizeof(string), "%s has changed the group cost on Pay N' Spray ID %d to $%s.", GetPlayerNameEx(playerid), id, number_format(amount));
- Log("logs/pnsedit.log", string);
- return 1;
- }
- else if(strcmp(choice, "regcost", true) == 0)
- {
- if(PayNSprays[id][pnsStatus] == 0)
- {
- format(string, sizeof(string), "Pay N' Spray #%d does not exist.", id);
- SendClientMessageEx(playerid, COLOR_WHITE, string);
- return 1;
- }
- PayNSprays[id][pnsRegCost] = amount;
- format(string, sizeof(string), "You have changed the regular cost for Pay N' Spray #%d to $%s.", id, number_format(amount));
- SendClientMessageEx(playerid, COLOR_WHITE, string);
- DestroyDynamic3DTextLabel(PayNSprays[id][pnsTextID]);
- format(string, sizeof(string), "/repaircar\nRepair Cost -- Regular: $%s | Faction: $%s\nID: %d", number_format(PayNSprays[id][pnsRegCost]), number_format(PayNSprays[id][pnsGroupCost]), id);
- PayNSprays[id][pnsTextID] = CreateDynamic3DTextLabel(string, COLOR_RED, PayNSprays[id][pnsPosX], PayNSprays[id][pnsPosY], PayNSprays[id][pnsPosZ]+0.5,10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 1, PayNSprays[id][pnsVW], PayNSprays[id][pnsInt], -1);
- SavePayNSpray(id);
- format(string, sizeof(string), "%s has changed the regular cost on Pay N' Spray ID %d to $%s.", GetPlayerNameEx(playerid), id, number_format(amount));
- Log("logs/pnsedit.log", string);
- return 1;
- }
- else if(strcmp(choice, "delete", true) == 0)
- {
- if(PayNSprays[id][pnsStatus] == 0)
- {
- format(string, sizeof(string), "Pay N' Spray #%d does not exist.", id);
- SendClientMessageEx(playerid, COLOR_WHITE, string);
- return 1;
- }
- DestroyDynamicPickup(PayNSprays[id][pnsPickupID]);
- DestroyDynamic3DTextLabel(PayNSprays[id][pnsTextID]);
- DestroyDynamicMapIcon(PayNSprays[id][pnsMapIconID]);
- PayNSprays[id][pnsStatus] = 0;
- PayNSprays[id][pnsPosX] = 0.0;
- PayNSprays[id][pnsPosY] = 0.0;
- PayNSprays[id][pnsPosZ] = 0.0;
- PayNSprays[id][pnsVW] = 0;
- PayNSprays[id][pnsInt] = 0;
- PayNSprays[id][pnsGroupCost] = 0;
- PayNSprays[id][pnsRegCost] = 0;
- SavePayNSpray(id);
- format(string, sizeof(string), "You have deleted Pay N' Spray #%d.", id);
- SendClientMessageEx(playerid, COLOR_WHITE, string);
- format(string, sizeof(string), "%s has deleted Pay N' Spray ID %d.", GetPlayerNameEx(playerid), id);
- Log("logs/pnsedit.log", string);
- return 1;
- }
- return 1;
- }
- CMD:pnsstatus(playerid, params[])
- {
- new id;
- if(sscanf(params, "i", id))
- {
- SendClientMessageEx(playerid, COLOR_GREY, "USAGE: /pnsstatus [id]");
- return 1;
- }
- if (PlayerInfo[playerid][pAdmin] >= 4 || PlayerInfo[playerid][pASM] >= 1)
- {
- new string[128];
- format(string,sizeof(string),"|___________ Pay N' Spray Status (ID: %d) ___________|", id);
- SendClientMessageEx(playerid, COLOR_GREEN, string);
- format(string, sizeof(string), "[Position] X: %f | Y: %f | Z: %f | VW: %d | Int: %d", PayNSprays[id][pnsPosX], PayNSprays[id][pnsPosY], PayNSprays[id][pnsPosZ], PayNSprays[id][pnsVW], PayNSprays[id][pnsInt]);
- SendClientMessageEx(playerid, COLOR_WHITE, string);
- format(string, sizeof(string), "Group Cost: $%s | Regular Cost: $%s", number_format(PayNSprays[id][pnsGroupCost]), number_format(PayNSprays[id][pnsRegCost]));
- SendClientMessageEx(playerid, COLOR_WHITE, string);
- }
- else
- {
- SendClientMessageEx(playerid, COLOR_GRAD1, "You are not authorized to use that command.");
- }
- return 1;
- }
- CMD:pnsnext(playerid, params[])
- {
- if(PlayerInfo[playerid][pAdmin] >= 4 || PlayerInfo[playerid][pASM] >= 1)
- {
- SendClientMessageEx(playerid, COLOR_RED, "* Listing next available Pay N' Spray...");
- for(new x = 0; x < MAX_PAYNSPRAYS; x++)
- {
- if(PayNSprays[x][pnsStatus] == 0)
- {
- new string[128];
- format(string, sizeof(string), "%d is available to use.", x);
- SendClientMessageEx(playerid, COLOR_WHITE, string);
- break;
- }
- }
- }
- else
- {
- SendClientMessageEx(playerid, COLOR_GRAD2, "You are not authorized to use that command.");
- return 1;
- }
- return 1;
- }
- CMD:gotopaynspray(playerid, params[])
- {
- if(PlayerInfo[playerid][pAdmin] >= 4 || PlayerInfo[playerid][pASM] >= 1)
- {
- new id;
- if(sscanf(params, "d", id)) return SendClientMessageEx(playerid, COLOR_GREY, "USAGE: /gotopaynspray [id]");
- SetPlayerPos(playerid, PayNSprays[id][pnsPosX], PayNSprays[id][pnsPosY], PayNSprays[id][pnsPosZ]);
- SetPlayerInterior(playerid, PayNSprays[id][pnsInt]);
- PlayerInfo[playerid][pInt] = PayNSprays[id][pnsInt];
- SetPlayerVirtualWorld(playerid, PayNSprays[id][pnsVW]);
- PlayerInfo[playerid][pVW] = PayNSprays[id][pnsVW];
- }
- return 1;
- }
- CMD:repaircar(playerid, params[])
- {
- if(zombieevent) return SendClientMessageEx(playerid, -1, "You can't use Pay N' Spray's during the Zombie Event!");
- if(IsPlayerInAnyVehicle(playerid) && GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
- {
- for(new i; i < MAX_PAYNSPRAYS; i++)
- {
- if(IsPlayerInRangeOfPoint(playerid, 3.0, PayNSprays[i][pnsPosX], PayNSprays[i][pnsPosY], PayNSprays[i][pnsPosZ]) && GetPlayerVirtualWorld(playerid) == PayNSprays[i][pnsVW] && GetPlayerInterior(playerid) == PayNSprays[i][pnsInt])
- {
- if(PayNSprays[i][pnsStatus] > 0)
- {
- if(DynVeh[GetPlayerVehicleID(playerid)] != -1 && DynVehicleInfo[DynVeh[GetPlayerVehicleID(playerid)]][gv_igID] != INVALID_GROUP_ID)
- {
- new iGroupID = DynVehicleInfo[DynVeh[GetPlayerVehicleID(playerid)]][gv_igID];
- if(arrGroupData[iGroupID][g_iBudget] >= PayNSprays[i][pnsGroupCost])
- {
- }
- else return SendClientMessage(playerid, COLOR_WHITE, "Your agency does not have enough money in their funds to pay for this!");
- }
- else
- {
- if(PlayerInfo[playerid][pCash] >= PayNSprays[i][pnsRegCost])
- {
- }
- else return SendClientMessage(playerid, COLOR_WHITE, "You don't have enough money to pay for this!");
- }
- SetTimerEx("PayNSpray", 5000, false, "iii", playerid, i, GetPlayerVehicleID(playerid));
- TogglePlayerControllable(playerid, 0);
- GameTextForPlayer(playerid, "Repairing...", 5000, 5);
- return 1;
- }
- }
- }
- SendClientMessage(playerid, COLOR_WHITE, "You are not at a Pay N' Spray!");
- }
- else SendClientMessage(playerid, COLOR_WHITE, "You are not in a car!");
- return 1;
- }
- stock SavePayNSpray(id)
- {
- new string[1024];
- mysql_format(MainPipeline, string, sizeof(string), "UPDATE `paynsprays` SET \
- `Status`=%d, \
- `PosX`=%f, \
- `PosY`=%f, \
- `PosZ`=%f, \
- `VW`=%d, \
- `Int`=%d, \
- `GroupCost`=%d, \
- `RegCost`=%d WHERE `id`=%d",
- PayNSprays[id][pnsStatus],
- PayNSprays[id][pnsPosX],
- PayNSprays[id][pnsPosY],
- PayNSprays[id][pnsPosZ],
- PayNSprays[id][pnsVW],
- PayNSprays[id][pnsInt],
- PayNSprays[id][pnsGroupCost],
- PayNSprays[id][pnsRegCost],
- id
- );
- mysql_tquery(MainPipeline, string, "OnQueryFinish", "i", SENDDATA_THREAD);
- }
- stock SavePayNSprays()
- {
- for(new i = 0; i < MAX_PAYNSPRAYS; i++)
- {
- SavePayNSpray(i);
- }
- return 1;
- }
- stock RehashPayNSpray(id)
- {
- DestroyDynamicPickup(PayNSprays[id][pnsPickupID]);
- DestroyDynamic3DTextLabel(PayNSprays[id][pnsTextID]);
- DestroyDynamicMapIcon(PayNSprays[id][pnsMapIconID]);
- PayNSprays[id][pnsSQLId] = -1;
- PayNSprays[id][pnsStatus] = 0;
- PayNSprays[id][pnsPosX] = 0.0;
- PayNSprays[id][pnsPosY] = 0.0;
- PayNSprays[id][pnsPosZ] = 0.0;
- PayNSprays[id][pnsVW] = 0;
- PayNSprays[id][pnsInt] = 0;
- PayNSprays[id][pnsGroupCost] = 0;
- PayNSprays[id][pnsRegCost] = 0;
- LoadPayNSpray(id);
- }
- stock RehashPayNSprays()
- {
- printf("[RehashPayNSprays] Deleting Pay N' Sprays from server...");
- for(new i = 0; i < MAX_PAYNSPRAYS; i++)
- {
- RehashPayNSpray(i);
- }
- LoadPayNSprays();
- }
- stock LoadPayNSpray(id)
- {
- new string[128];
- format(string, sizeof(string), "SELECT * FROM `paynsprays` WHERE `id`=%d", id);
- mysql_tquery(MainPipeline, string, "OnLoadPayNSpray", "i", id);
- }
- stock LoadPayNSprays()
- {
- printf("[LoadPayNSprays] Loading data from database...");
- mysql_tquery(MainPipeline, "SELECT * FROM `paynsprays`", "OnLoadPayNSprays", "");
- }
- forward OnLoadPayNSpray(index);
- public OnLoadPayNSpray(index)
- {
- new rows;
- szMiscArray[0] = 0;
- cache_get_row_count(rows);
- for(new row; row < rows; row++)
- {
- cache_get_value_name_int(row, "id", PayNSprays[index][pnsSQLId]);
- cache_get_value_name_int(row, "Status", PayNSprays[index][pnsStatus]);
- cache_get_value_name_float(row, "PosX", PayNSprays[index][pnsPosX]);
- cache_get_value_name_float(row, "PosY", PayNSprays[index][pnsPosY]);
- cache_get_value_name_float(row, "PosZ", PayNSprays[index][pnsPosZ]);
- cache_get_value_name_int(row, "VW", PayNSprays[index][pnsVW]);
- cache_get_value_name_int(row, "Int", PayNSprays[index][pnsInt]);
- cache_get_value_name_int(row, "GroupCost", PayNSprays[index][pnsGroupCost]);
- cache_get_value_name_int(row, "RegCost", PayNSprays[index][pnsRegCost]);
- if(PayNSprays[index][pnsStatus] > 0)
- {
- format(szMiscArray, sizeof(szMiscArray), "/repaircar\nRepair Cost -- Regular: $%s | Faction: $%s\nID: %d", number_format(PayNSprays[index][pnsRegCost]), number_format(PayNSprays[index][pnsGroupCost]), index);
- PayNSprays[index][pnsTextID] = CreateDynamic3DTextLabel(szMiscArray, COLOR_RED, PayNSprays[index][pnsPosX], PayNSprays[index][pnsPosY], PayNSprays[index][pnsPosZ]+0.5,10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 1, PayNSprays[index][pnsVW], PayNSprays[index][pnsInt], -1);
- PayNSprays[index][pnsPickupID] = CreateDynamicPickup(1239, 23, PayNSprays[index][pnsPosX], PayNSprays[index][pnsPosY], PayNSprays[index][pnsPosZ], PayNSprays[index][pnsVW]);
- PayNSprays[index][pnsMapIconID] = CreateDynamicMapIcon(PayNSprays[index][pnsPosX], PayNSprays[index][pnsPosY], PayNSprays[index][pnsPosZ], 63, 0, PayNSprays[index][pnsVW], PayNSprays[index][pnsInt], -1, 500.0);
- }
- }
- return 1;
- }
- forward OnLoadPayNSprays();
- public OnLoadPayNSprays()
- {
- new i, rows;
- szMiscArray[0] = 0;
- cache_get_row_count(rows);
- while(i < rows)
- {
- /*PayNSprays[i][pnsSQLId] = cache_get_field_content_int(i, "id", MainPipeline);
- PayNSprays[i][pnsStatus] = cache_get_field_content_int(i, "Status", MainPipeline);
- PayNSprays[i][pnsPosX] = cache_get_field_content_float(i, "PosX", MainPipeline);
- PayNSprays[i][pnsPosY] = cache_get_field_content_float(i, "PosY", MainPipeline);
- PayNSprays[i][pnsPosZ] = cache_get_field_content_float(i, "PosZ", MainPipeline);
- PayNSprays[i][pnsVW] = cache_get_field_content_int(i, "VW", MainPipeline);
- PayNSprays[i][pnsInt] = cache_get_field_content_int(i, "Int", MainPipeline);
- PayNSprays[i][pnsGroupCost] = cache_get_field_content_int(i, "GroupCost", MainPipeline);
- PayNSprays[i][pnsRegCost] = cache_get_field_content_int(i, "RegCost", MainPipeline);
- if(PayNSprays[i][pnsStatus] > 0)
- {
- if(PayNSprays[i][pnsPosX] != 0.0)
- {
- format(szMiscArray, sizeof(szMiscArray), "/repaircar\nRepair Cost -- Regular: $%s | Faction: $%s\nID: %d", number_format(PayNSprays[i][pnsRegCost]), number_format(PayNSprays[i][pnsGroupCost]), i);
- PayNSprays[i][pnsTextID] = CreateDynamic3DTextLabel(szMiscArray, COLOR_RED, PayNSprays[i][pnsPosX], PayNSprays[i][pnsPosY], PayNSprays[i][pnsPosZ]+0.5,10.0, INVALID_PLAYER_ID, INVALID_VEHICLE_ID, 1, PayNSprays[i][pnsVW], PayNSprays[i][pnsInt], -1);
- PayNSprays[i][pnsPickupID] = CreateDynamicPickup(1239, 23, PayNSprays[i][pnsPosX], PayNSprays[i][pnsPosY], PayNSprays[i][pnsPosZ], PayNSprays[i][pnsVW]);
- PayNSprays[i][pnsMapIconID] = CreateDynamicMapIcon(PayNSprays[i][pnsPosX], PayNSprays[i][pnsPosY], PayNSprays[i][pnsPosZ], 63, 0, PayNSprays[i][pnsVW], PayNSprays[i][pnsInt], -1, 500.0);
- }
- }*/
- LoadPayNSpray(i);
- i++;
- }
- }
|