[POMOC]errori

Započeo Foxon
18. Jun 2014. Zaključano
315
pregleda
5
postova
Foxon
2
Wheel Man
18. Jun 2014.
Skripta koju koristim:Wb
Detaljan opis problema😛a ovako pravio sam deliver system tj dostavu materijala organizacijama i kad sam to zavrsio krenuo sam complite medjutim pocelo mi je izbacivati errore probam sam rijesiti al nisam uspio nez u cemu je problem a prije nego sto sam napravio deliver system sve je bilo uredu i nije mi izbacivalo ove errore nikako
Dio skripte:koji bude potreban dat cu
Neke slike/video za lakse dobivanje pomoci(neobavezno):
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(4349) : error 032: array index out of bounds (variable "BALLASD")
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(4382) : error 032: array index out of bounds (variable "GSFD")
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(4393) : error 032: array index out of bounds (variable "LCND")
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(4406) : error 032: array index out of bounds (variable "YMD")
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(4982) : error 004: function "LoadYakuza" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(4983) : error 004: function "LoadLCN" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(4984) : error 004: function "LoadGrove" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(4985) : error 004: function "LoadBallas" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(4986) : error 004: function "LoadPolice" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(4987) : error 004: function "LoadHitman" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(5665) : error 004: function "Update" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(5670) : error 004: function "SaveYakuza" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(5671) : error 004: function "SaveLCN" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(5672) : error 004: function "SaveGrove" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(5673) : error 004: function "SaveBallas" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(5674) : error 004: function "SavePolice" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(5675) : error 004: function "SaveHitman" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(5679) : error 017: undefined symbol "SaveBusiness"
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(5684) : error 017: undefined symbol "SaveHouse"
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(5689) : error 017: undefined symbol "SaveVehicle"
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(5705) : error 017: undefined symbol "ClearChatbox"
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(6515) : error 004: function "Update" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(6532) : error 004: function "ProxDetector" is not implemented
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(6573) : error 017: undefined symbol "SaveBusiness"
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(6578) : error 017: undefined symbol "SaveHouse"
C:\Documents and Settings\PC\Desktop\Street Creed Gamemode\gamemodes\sc.pwn(6583) : error 017: undefined symbol "SaveVehicle"

Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase

26 Errors.
James_SmithXDl
6
OG Legend
18. Jun 2014.
skini lepo bracket finder i proveri zagrade u skripti ako se nepoklapa broj otvoreni sa zatvorenima ili obrnuto problem ti je u tomer sto si izostavio ili imas viska zagradu.

http://forum.sa-mp.com/showthread.php?t=322839
Foxon
2
Wheel Man
18. Jun 2014.
imao sam jednu manje zagradu popravio sam ali opt javlja iste errore -.-
James_SmithXDl
6
OG Legend
18. Jun 2014.
is not implemented = moras imati i forward i public za poziv

array index out of bounds = dodao si vrednost varijable i presao je.

undefined symbol = pawno je pokusao pozvat radnju ali nije pronasao odgovor na pokrenutu radnju.
Foxon
2
Wheel Man
18. Jun 2014.
uspio sam rijesiti za array index ali nmg ovo ostalo evo kako mi stoji u skripti
DisableInteriorEnterExits();
DisableNameTagLOS();
SetPDistance(10);
AllowInteriorWeapons(1);
EnableStuntBonusForAll(0);
LoadYakuza();
LoadLCN();
LoadGrove();
LoadBallas();
LoadPolice();
LoadHitman();

    for(new id = 1; id < sizeof(BusinessInfo); id++)//Loops through the businesses.
    {
    if(BusinessInfo == 0) break;//Breaks the loop if the price is 0(Meaning it doesn't exist)
        SaveBusiness(id);//Calls the SaveBusiness function.
    }
    for(new ip = 1; ip < sizeof(HouseInfo); ip++)//Loops through the businesses.
    {
        if(HouseInfo == 0) break;//Breaks the loop if the price is 0(Meaning it doesn't exist)
        SaveHouse(ip);//Calls the SaveBusiness function.
    }
    for(new li = 1; li < sizeof(VehicleINFO); li++)//Loops through the businesses.
    {
        if(VehicleINFO == 0) break;//Breaks the loop if the price is 0(Meaning it doesn't exist)
        SaveVehicle(li);//Calls the SaveBusiness function.
    }
return 1;
}
ovo su neki dijelovi koji mi javljaju errore nez do cega je

Morate biti prijavljeni da biste odgovorili na ovu temu.

Prijava

© 2026 SmartShark. All rights reserved.

Powered by Momentum|v2026.3.001 Alpha