(Pomoc) Errorovi

Započeo GameSager
26. Jun 2013. Zaključano
296
pregleda
5
postova
GameSager
4
Shot Caller
26. Jun 2013.
Skripta koju koristim:CL al uredjena malo
Detaljan opis problema:Error do errora neznam akko popravit
Dio skripte:
public PreparePaintball()
{
foreach (Player, i)
{
        if(PlayerPaintballing != 0)
        {
            SendClientMessage(i, COLOR_YELLOW, "Paintball Mech ce poceti za 20 sekundi.");
        }
}
SetTimer("StartPaintball", 20000, 0);
return 1;
}

public StartPaintball()
{
PaintballRound = 1;
StartingPaintballRound = 0;
PaintballWinner = 999;
PaintballWinnerKills = 0;
foreach (Player, i)
{
        if(PlayerPaintballing != 0)
        {
            SafeResetPlayerWeapons(i);
            SafeGivePlayerWeapon(i, 29, 999);
            TogglePlayerControllable(i, 1);
            SendClientMessage(i, COLOR_YELLOW, "Paintball Mech je poceo, ostalo je jos 4 minuta.");
            PlayerPlaySound(i, 1057, 0.0, 0.0, 0.0);
        }
}
SetTimer("PaintballEnded", 240000, 0);
return 1;
}

public PaintballEnded()
{
new string;
new name;
foreach (Player, i)
{
        if(PlayerPaintballing != 0)
        {
            if(IsPlayerConnected(PaintballWinner))
            {
                GetPlayerName(PaintballWinner, name, sizeof(name));
                format(string,sizeof(string), "** %s je osvojio mech sa %d ubistava **",name,PaintballWinnerKills);
                SendClientMessage(i, COLOR_WHITE, string);
            }
            SafeResetPlayerWeapons(i);
            PlayerPaintballing = 0;
            SetPlayerPos(i, SBizzInfo,SBizzInfo,SBizzInfo);
        }
}

Neke slike/video za lakse dobivanje pomoci(neobavezno)://

Naci u ovoj gore skripti mi javlja 2-3 errora ima veze s ovim SafeResetPlayerweapon i nesto s tim safe nis nekuzim mozemo pomoc o.O
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4073) : error 004: function "SafeResetPlayerWeapons" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4074) : error 004: function "SafeGivePlayerWeapon" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4098) : error 004: function "SafeResetPlayerWeapons" is not implemented
Deleted User
Obrisan korisnik
26. Jun 2013.
Nemas public tih funkcija ja mislim,
GameSager
4
Shot Caller
26. Jun 2013.
kak se napravi public? xD
BocaBajrovic1995
5
Kingpin
26. Jun 2013.
gore kod forward
forward SafeResetPlayerWeapons(plyid);
forward SafeGivePlayerWeapon(plyid, weaponid, ammo);
GameSager
4
Shot Caller
26. Jun 2013.
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4234) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4246) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4250) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4262) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4266) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4270) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4274) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4278) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4282) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4286) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4290) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4294) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4298) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4310) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4314) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4318) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4322) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4326) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4338) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4342) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4346) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4358) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4362) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4366) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4370) : error 004: function "PlayerToPoint" is not implemented
C:\Users\User\Desktop\Balkan-Life\Balkan-Life\Balkan-Life RPG\gamemodes\BLRP.pwn(4374) : error 004: function "PlayerToPoint" is not implemented


Ovako izbrisao sam Paintball i maknulo mi se ono ... nije bitno al sam dobio ove errore moze neko pomoc pliz ☹️ Nezznam kako ih maknut
public IsAtGasStation(playerid)
{
    if(IsPlayerConnected(playerid))
{
if(PlayerToPoint(6.0,playerid,1004.0070,-939.3102,42.1797) || PlayerToPoint(6.0,playerid,1944.3260,-1772.9254,13.3906))
{//LS
    return 1;
}
else if(PlayerToPoint(6.0,playerid,-90.5515,-1169.4578,2.4079) || PlayerToPoint(6.0,playerid,-1609.7958,-2718.2048,48.5391))
{//LS
    return 1;
}
else if(PlayerToPoint(6.0,playerid,-2029.4968,156.4366,28.9498) || PlayerToPoint(8.0,playerid,-2408.7590,976.0934,45.4175))
{//SF
    return 1;
}
else if(PlayerToPoint(5.0,playerid,-2243.9629,-2560.6477,31.8841) || PlayerToPoint(8.0,playerid,-1676.6323,414.0262,6.9484))
{//Between LS and SF
    return 1;
}
else if(PlayerToPoint(6.0,playerid,2202.2349,2474.3494,10.5258) || PlayerToPoint(10.0,playerid,614.9333,1689.7418,6.6968))
{//LV
    return 1;
}
else if(PlayerToPoint(8.0,playerid,-1328.8250,2677.2173,49.7665) || PlayerToPoint(6.0,playerid,70.3882,1218.6783,18.5165))
{//LV
    return 1;
}
else if(PlayerToPoint(8.0,playerid,2113.7390,920.1079,10.5255) || PlayerToPoint(6.0,playerid,-1327.7218,2678.8723,50.0625))
{//LV
    return 1;
}
else if(PlayerToPoint(8.0,playerid,656.4265,-559.8610,16.5015) || PlayerToPoint(6.0,playerid,656.3797,-570.4138,16.5015))
{//Dillimore
    return 1;
}
else if(PlayerToPoint(8.0,playerid,125.2434463501, -1935.9764404297, 2.6310691833496) || PlayerToPoint(8.0,playerid,133.91174316406, -1941.7890625, 2.6310691833496))
{//Pumpa za Helice
    return 1;
}
else if(PlayerToPoint(8.0,playerid,1004.1514892578, -936.96557617188, 47.211837768555))
{//Pumpa za Helice
    return 1;
}
}
return 0;
}

public IsAtFishPlace(playerid)
{
if(IsPlayerConnected(playerid))
{
    if(PlayerToPoint(1.0,playerid,403.8266,-2088.7598,7.8359) || PlayerToPoint(1.0,playerid,398.7553,-2088.7490,7.8359))
{//Fishplace at the bigwheel
    return 1;
}
else if(PlayerToPoint(1.0,playerid,396.2197,-2088.6692,7.8359) || PlayerToPoint(1.0,playerid,391.1094,-2088.7976,7.8359))
{//Fishplace at the bigwheel
    return 1;
}
else if(PlayerToPoint(1.0,playerid,383.4157,-2088.7849,7.8359) || PlayerToPoint(1.0,playerid,374.9598,-2088.7979,7.8359))
{//Fishplace at the bigwheel
    return 1;
}
else if(PlayerToPoint(1.0,playerid,369.8107,-2088.7927,7.8359) || PlayerToPoint(1.0,playerid,367.3637,-2088.7925,7.8359))
{//Fishplace at the bigwheel
    return 1;
}
else if(PlayerToPoint(1.0,playerid,362.2244,-2088.7981,7.8359) || PlayerToPoint(1.0,playerid,354.5382,-2088.7979,7.8359))
{//Fishplace at the bigwheel
    return 1;
}
}
return 0;
}

public IsAtCookPlace(playerid)
{
if(IsPlayerConnected(playerid))
{
    if(PlayerToPoint(3.0,playerid,369.9786,-4.0798,1001.8589))
    {//Cluckin Bell
        return 1;
    }
    else if(PlayerToPoint(3.0,playerid,376.4466,-60.9574,1001.5078) || PlayerToPoint(3.0,playerid,378.1215,-57.4928,1001.5078))
{//Burgershot
    return 1;
}
else if(PlayerToPoint(3.0,playerid,374.1185,-113.6361,1001.4922) || PlayerToPoint(3.0,playerid,377.7971,-113.7668,1001.4922))
{//Well Stacked Pizza
    return 1;
}
}
return 0;
}

public IsAtBar(playerid)
{
    if(IsPlayerConnected(playerid))
{
if(PlayerToPoint(4.0,playerid,495.7801,-76.0305,998.7578) || PlayerToPoint(4.0,playerid,1726.4166,-1879.3065,13.5638))
{//In grove street bar (with girlfriend), and in Havanna
    return 1;
}
else if(PlayerToPoint(4,0,playerid,1215.9480,-13.3519,1000.9219) || PlayerToPoint(10,0,playerid,-2658.9749,1407.4136,906.2734))
{//PIG Pen
    return 1;
}
else if(PlayerToPoint(4.0,playerid,-791.016,512.249,1336.41) || PlayerToPoint(10.0,playerid,-799.122,520.988,1336.41))
{//Nortenos House
    return 1;
}
else if(PlayerToPoint(4.0,playerid,1955.3664,1018.5177,992.4687))
{//Kazino BAR
    return 1;
}
else if(PlayerToPoint(4.0,playerid,1200.3809814453,-912.50012207031,47.711727142334))
{//BURG BAR
    return 1;
}


To je code skoro od cijelog ovo za burg zadnje tu je error i na nekima gore moze mi neko to pomoc neznam u cemu je problem!

Morate biti prijavljeni da biste odgovorili na ovu temu.

Prijava

© 2026 SmartShark. All rights reserved.

Powered by Momentum|v2026.3.001 Alpha