Nose como borrar casas.. bueno explico: mapee una base y resulta que se qedaron los iconos de comprarcasa.. bueno 1 solo y es este y encima esta descarado en medio de la base.. como lo borro? XD Lo tape con eli xd pero se sigue biendo
2 participantes
[Duda] Como borro casas?
Axel_Blake- Mensajes : 52
Fecha de inscripción : 23/08/2013
Edad : 35
- Mensaje n°1
[Duda] Como borro casas?
Pixel- Mensajes : 170
Fecha de inscripción : 28/07/2013
Edad : 29
- Mensaje n°2
Re: [Duda] Como borro casas?
Dime que hay en OnGameModeInit pásalo en un spoiler así no molesta
Axel_Blake- Mensajes : 52
Fecha de inscripción : 23/08/2013
Edad : 35
- Mensaje n°3
Re: [Duda] Como borro casas?
- xd:
- public OnGameModeInit()
{
AntiDeAMX();
// Default Rates (-200 Players)
SendRconCommand("onfoot_rate 40");
SendRconCommand("incar_rate 40");
SendRconCommand("weapon_rate 40");
SendRconCommand("stream_distance 250.0");
SendRconCommand("stream_rate 1000");
Streamer_TickRate(75);
/* Init gamemode */
djson_GameModeInit();
// TIMERS
/*scriptTimers[0] = SetTimer("severTimers", 1000, 1);
scriptTimers[1] = SetTimer("severTimers2", 1000, 1);
scriptTimers[2] = SetTimer("saveAccounts", 300000, 1);
scriptTimers[3] = SetTimer("VehicleUpdate", 10000, 1);
scriptTimers[4] = SetTimer("ServerMicrobeat", 250, 1);
scriptTimers[5] = SetTimer("SyncUp", 60000, 1);
scriptTimers[6] = SetTimer("Mensajes", 600000, 1);
scriptTimers[7] = SetTimer("EMSUpdate", 5000, 1);
scriptTimers[8] = SetTimer("playerTabbedLoop", 600000,1);
scriptTimers[9] = SetTimer("SpecUpdate", 5000, 1);
scriptTimers[10] = SetTimer("Anticheat", 1000, 1);*/
SendRconCommand("mapname San Andreas");
SendRconCommand("weburl LandCityRP.com.nu");
SendRconCommand("gamemodetext Role Play Español - RPG - RP");
new servergmtextstr[64]; // DO NOT REMOVE THIS
format(servergmtextstr, 64, "hostname LandCity Roleplay v%s [0.3x] [Español]", SERVER_GM_TEXT); // DO NOT REMOVE THIS
SendRconCommand(servergmtextstr); // DO NOT REMOVE THIS
//// DO NOT REMOVE THIS
new string[42];
ShowPlayerMarkers(PLAYER_MARKERS_MODE_STREAMED);
EnableStuntBonusForAll(0);
EnableTirePopping(1);
EnableZoneNames(1);
AllowAdminTeleport(0);
DisableInteriorEnterExits();
LoadHouses();
LoadStuff();
LoadServerStats();
LoadFamilies();
LoadPoints();
LoadDynamicDoors();
LoadcDealerships();
for(new f = 0; f < sizeof(fINFO); f++)
{
for(new fv = 0; fv < MAX_GANG_VEHICLES; fv++)
{
FVINFO[f][fv][fvModelId] = 0;
FVINFO[f][fv][fvSpawnx] = 0.0;
FVINFO[f][fv][fvSpawny] = 0.0;
FVINFO[f][fv][fvSpawnz] = 0.0;
FVINFO[f][fv][fvSpawna] = 0.0;
FVINFO[f][fv][fvPaintJob] = -1;
FVINFO[f][fv][fvColor1] = 126;
FVINFO[f][fv][fvColor2] = 126;
FVINFO[f][fv][fvPrice] = 0;
FVINFO[f][fv][fvFuel] = 100;
FVINFO[f][fv][fvId] = INVALID_VEHICLE_ID;
}
}
LoadFamiliesHQ();
LoadMOTDs();
ClearReports();
SetNameTagDrawDistance(60.0);
gettime(ghour, gminute, gsecond);
FixHour(ghour);
ghour = shifthour;
if(!realtime)
{
SetWorldTime(wtime);
gTime = wtime;
}
GiftAllowed = 1;
AllowInteriorWeapons(1);
UsePlayerPedAnims(); // CJ Anims
//Check Cars
for(new i = 0; i < sizeof(CreatedCars); i++)
{
CreatedCars[i] = INVALID_VEHICLE_ID;
}
for(new v = 0; v < MAX_VEHICLES; v++)
{
VehicleFuel[v] = 1000;
}
// Player Class's
for(new i = 0; i <= sizeof(Peds)-1; i++)
{
AddPlayerClass(Peds[i][0],1958.3783,1343.1572,1100.3746,269.1425,-1,-1,-1,-1,-1,-1);
}
Pixel- Mensajes : 170
Fecha de inscripción : 28/07/2013
Edad : 29
- Mensaje n°4
Re: [Duda] Como borro casas?
Pasame public LoadHouses en otro spoiler por favor
Axel_Blake- Mensajes : 52
Fecha de inscripción : 23/08/2013
Edad : 35
- Mensaje n°5
Re: [Duda] Como borro casas?
LoadHouses() {
if(!fexist("apartments.cfg")) return 1;
new
szFileStr[1024],
File: iFileHandle = fopen("apartments.cfg", io_read),
iIndex;
while(iIndex < sizeof(HouseInfo) && fread(iFileHandle, szFileStr)) {
sscanf(szFileStr, "p<|>iiis[128]s[24]ffffffffiiiiiiiiiiiiiiiiiff",
HouseInfo[iIndex][hOwned],
HouseInfo[iIndex][hLevel],
HouseInfo[iIndex][hHInteriorWorld],
HouseInfo[iIndex][hDescription],
HouseInfo[iIndex][hOwner],
HouseInfo[iIndex][hExteriorX],
HouseInfo[iIndex][hExteriorY],
HouseInfo[iIndex][hExteriorZ],
HouseInfo[iIndex][hExteriorR],
HouseInfo[iIndex][hInteriorX],
HouseInfo[iIndex][hInteriorY],
HouseInfo[iIndex][hInteriorZ],
HouseInfo[iIndex][hInteriorR],
HouseInfo[iIndex][hLock],
HouseInfo[iIndex][hRentable],
HouseInfo[iIndex][hRentFee],
HouseInfo[iIndex][hValue],
HouseInfo[iIndex][hSafeMoney],
HouseInfo[iIndex][hPot],
HouseInfo[iIndex][hCrack],
HouseInfo[iIndex][hMaterials],
HouseInfo[iIndex][hWeapons][0],
HouseInfo[iIndex][hWeapons][1],
HouseInfo[iIndex][hWeapons][2],
HouseInfo[iIndex][hWeapons][3],
HouseInfo[iIndex][hWeapons][4],
HouseInfo[iIndex][hGLUpgrade],
HouseInfo[iIndex][hPickupID],
HouseInfo[iIndex][hCustomInterior],
HouseInfo[iIndex][hCustomExterior],
HouseInfo[iIndex][hExteriorA],
HouseInfo[iIndex][hInteriorA]
);
if(!fexist("apartments.cfg")) return 1;
new
szFileStr[1024],
File: iFileHandle = fopen("apartments.cfg", io_read),
iIndex;
while(iIndex < sizeof(HouseInfo) && fread(iFileHandle, szFileStr)) {
sscanf(szFileStr, "p<|>iiis[128]s[24]ffffffffiiiiiiiiiiiiiiiiiff",
HouseInfo[iIndex][hOwned],
HouseInfo[iIndex][hLevel],
HouseInfo[iIndex][hHInteriorWorld],
HouseInfo[iIndex][hDescription],
HouseInfo[iIndex][hOwner],
HouseInfo[iIndex][hExteriorX],
HouseInfo[iIndex][hExteriorY],
HouseInfo[iIndex][hExteriorZ],
HouseInfo[iIndex][hExteriorR],
HouseInfo[iIndex][hInteriorX],
HouseInfo[iIndex][hInteriorY],
HouseInfo[iIndex][hInteriorZ],
HouseInfo[iIndex][hInteriorR],
HouseInfo[iIndex][hLock],
HouseInfo[iIndex][hRentable],
HouseInfo[iIndex][hRentFee],
HouseInfo[iIndex][hValue],
HouseInfo[iIndex][hSafeMoney],
HouseInfo[iIndex][hPot],
HouseInfo[iIndex][hCrack],
HouseInfo[iIndex][hMaterials],
HouseInfo[iIndex][hWeapons][0],
HouseInfo[iIndex][hWeapons][1],
HouseInfo[iIndex][hWeapons][2],
HouseInfo[iIndex][hWeapons][3],
HouseInfo[iIndex][hWeapons][4],
HouseInfo[iIndex][hGLUpgrade],
HouseInfo[iIndex][hPickupID],
HouseInfo[iIndex][hCustomInterior],
HouseInfo[iIndex][hCustomExterior],
HouseInfo[iIndex][hExteriorA],
HouseInfo[iIndex][hInteriorA]
);
Pixel- Mensajes : 170
Fecha de inscripción : 28/07/2013
Edad : 29
- Mensaje n°6
Re: [Duda] Como borro casas?
De seguro que se guarda las coordenadas de la casa en un bloc de notas en scripfiles la dirección debe estar en OnGameModeInit entras al juego sacas las coordenadas de la posiciones y lo buscas en el block de notas y lo borras.
Axel_Blake- Mensajes : 52
Fecha de inscripción : 23/08/2013
Edad : 35
- Mensaje n°7
Re: [Duda] Como borro casas?
Ya me ayudó dark sonic ;)muchas gracias
"Tema Zanjado"
"Tema Zanjado"
Pixel- Mensajes : 170
Fecha de inscripción : 28/07/2013
Edad : 29
- Mensaje n°8
Re: [Duda] Como borro casas?
Tema solucionado
Movido a Pedidos realizados.