Errors but i don't know how to fix them
#2

I didn't get you what you are doing in this line:
PHP код:
function StartMap()
{
    foreach(
Player,i//I can't find any function, stock or public forward that called Player?
    
{
        if(
Mode[i] == 1
        {
            
DisablePlayerCheckpoint(i);
            
GameMinutes =4;
            
GameSeconds =59;
            
TogglePlayerSpectating(i,0);
            
air[i] = 1;
            
eopen 1;
            
evaced[i] = 0;
            
roundkills[i] = 0;
            
roundxp[i] = 0;
            
pInfo[i][pRCcars] = 2;
            
ClearAnimations(i);
            
HumanSetup(i);
            
SpawnPlayer(i);
            
CurePlayer(i);
            
SetPlayerDrunkLevel(i,0);
            
pInfo[i][Boxes] = 0;
            
pInfo[i][BoxesAdvanced] = 0;
            
pInfo[i][pVipBoxes] = 3;
            
pInfo[i][pLadders] = 0;
            
pInfo[i][C4] = 2;
            
pInfo[i][pDoctorShield] = 1;
            
pInfo[i][pMapsPlayed]++;
            
DestroyPickup(meatDrops[i]);
            
DestroyObject(DocShield);
            
TextDrawHideForPlayer(iTextdraw0);
            
TextDrawHideForPlayer(iTextdraw1);
            
TextDrawHideForPlayer(iTextdraw2);
            
TextDrawHideForPlayer(iTextdraw3);
            
TextDrawHideForPlayer(iTextdraw4);
            
TextDrawHideForPlayer(iTextdraw5);
            
TextDrawHideForPlayer(iTextdraw6);
            
TextDrawHideForPlayer(iTextdraw7);
            
TextDrawHideForPlayer(iTextdraw8);
            
TextDrawHideForPlayer(iTextdraw9);
            
TextDrawHideForPlayer(iTextdraw10);
            
TextDrawHideForPlayer(iTextdraw12);
            
TextDrawHideForPlayer(iTextdraw13);
            
TextDrawHideForPlayer(iTextdraw14);
            
TextDrawHideForPlayer(iTextdraw15);
            
TextDrawHideForPlayer(iTextdraw16);
            
TextDrawHideForPlayer(iTextdraw17);
            
TextDrawHideForPlayer(iTextdraw18);
            
TextDrawHideForPlayer(iTextdraw19);
            
TextDrawHideForPlayer(iTextdraw20);
            
TextDrawHideForPlayer(iTextdraw21);
            
TextDrawHideForPlayer(iTextdraw22);
            
TextDrawHideForPlayer(iTextdraw23);
            
TextDrawHideForPlayer(iTextdraw24);
            
TextDrawHideForPlayer(iTextdraw25);
            
TextDrawHideForPlayer(iTextdraw26);
            
TextDrawHideForPlayer(iTextdraw27);
            
hellspawn 0;
            
SetCameraBehindPlayer(i);
            
TogglePlayerControllable(i,1);
            new 
IP[22]; // Creating a new string called IP with the maximum length of 22.
            
GetPlayerIp(iIPsizeof(IP));
            new 
INI:File INI_Open(UserPath(i));
            
INI_SetTag(File,"data");
            
INI_WriteString(File"Ip"IP); // We're writing in the .ini file of the player a new line which will contain our string "IP", so it'll look like "Ip = IP String here". If my IP was for example "127.0.0.1" then it'll be "Ip = 127.0.0.1".
            
INI_Close(File);
            
spec[i] = 0;
        }
    }
    
time1 MAX_MAPTIME;
    
SetWeather(Map[Weather]);
    
SetWorldTime(Map[Time]);
    
UpdateMapName();
    
SetTimer("SetAllHuman",1000,false);
    
gateobj CreateObject(Map[GateID],Map[GateX],Map[GateY],Map[GateZ],Map[GaterX],Map[GaterY],Map[GaterZ],500.0);
    
mapvar SetTimer("OnMapUpdate",MAX_MAPUPDATE_TIME,true);
    
balvar SetTimer("OnMapBalance",MAX_BALANCERUPDATE_TIME,true);
    return 
1;

You can replace this with it:
PHP код:
function StartMap()
{
    foreach(
MAX_PLAYERS,i)
    {
        if(
Mode[i] == 1)
        {
            
DisablePlayerCheckpoint(i);
            
GameMinutes =4;
            
GameSeconds =59;
            
TogglePlayerSpectating(i,0);
            
air[i] = 1;
            
eopen 1;
            
evaced[i] = 0;
            
roundkills[i] = 0;
            
roundxp[i] = 0;
            
pInfo[i][pRCcars] = 2;
            
ClearAnimations(i);
            
HumanSetup(i);
            
SpawnPlayer(i);
            
CurePlayer(i);
            
SetPlayerDrunkLevel(i,0);
            
pInfo[i][Boxes] = 0;
            
pInfo[i][BoxesAdvanced] = 0;
            
pInfo[i][pVipBoxes] = 3;
            
pInfo[i][pLadders] = 0;
            
pInfo[i][C4] = 2;
            
pInfo[i][pDoctorShield] = 1;
            
pInfo[i][pMapsPlayed]++;
            
DestroyPickup(meatDrops[i]);
            
DestroyObject(DocShield);
            
TextDrawHideForPlayer(iTextdraw0);
            
TextDrawHideForPlayer(iTextdraw1);
            
TextDrawHideForPlayer(iTextdraw2);
            
TextDrawHideForPlayer(iTextdraw3);
            
TextDrawHideForPlayer(iTextdraw4);
            
TextDrawHideForPlayer(iTextdraw5);
            
TextDrawHideForPlayer(iTextdraw6);
            
TextDrawHideForPlayer(iTextdraw7);
            
TextDrawHideForPlayer(iTextdraw8);
            
TextDrawHideForPlayer(iTextdraw9);
            
TextDrawHideForPlayer(iTextdraw10);
            
TextDrawHideForPlayer(iTextdraw12);
            
TextDrawHideForPlayer(iTextdraw13);
            
TextDrawHideForPlayer(iTextdraw14);
            
TextDrawHideForPlayer(iTextdraw15);
            
TextDrawHideForPlayer(iTextdraw16);
            
TextDrawHideForPlayer(iTextdraw17);
            
TextDrawHideForPlayer(iTextdraw18);
            
TextDrawHideForPlayer(iTextdraw19);
            
TextDrawHideForPlayer(iTextdraw20);
            
TextDrawHideForPlayer(iTextdraw21);
            
TextDrawHideForPlayer(iTextdraw22);
            
TextDrawHideForPlayer(iTextdraw23);
            
TextDrawHideForPlayer(iTextdraw24);
            
TextDrawHideForPlayer(iTextdraw25);
            
TextDrawHideForPlayer(iTextdraw26);
            
TextDrawHideForPlayer(iTextdraw27);
            
hellspawn 0;
            
SetCameraBehindPlayer(i);
            
TogglePlayerControllable(i,1);
            new 
IP[22]; // Creating a new string called IP with the maximum length of 22.
            
GetPlayerIp(iIPsizeof(IP));
            new 
INI:File INI_Open(UserPath(i));
            
INI_SetTag(File,"data");
            
INI_WriteString(File"Ip"IP); // We're writing in the .ini file of the player a new line which will contain our string "IP", so it'll look like "Ip = IP String here". If my IP was for example "127.0.0.1" then it'll be "Ip = 127.0.0.1".
            
INI_Close(File);
            
spec[i] = 0;
        }
    }
    
time1 MAX_MAPTIME;
    
SetWeather(Map[Weather]);
    
SetWorldTime(Map[Time]);
    
UpdateMapName();
    
SetTimer("SetAllHuman",1000,false);
    
gateobj CreateObject(Map[GateID],Map[GateX],Map[GateY],Map[GateZ],Map[GaterX],Map[GaterY],Map[GaterZ],500.0);
    
mapvar SetTimer("OnMapUpdate",MAX_MAPUPDATE_TIME,true);
    
balvar SetTimer("OnMapBalance",MAX_BALANCERUPDATE_TIME,true);
    return 
1;

Reply


Messages In This Thread
Errors but i don't know how to fix them - by TaligaroW - 11.09.2018, 15:24
Re: Errors but i don't know how to fix them - by akib - 11.09.2018, 15:36
Re: Errors but i don't know how to fix them - by solstice_ - 11.09.2018, 15:47
Re: Errors but i don't know how to fix them - by akib - 11.09.2018, 15:50
Re: Errors but i don't know how to fix them - by solstice_ - 11.09.2018, 15:52
Re: Errors but i don't know how to fix them - by TaligaroW - 11.09.2018, 15:53
Re: Errors but i don't know how to fix them - by akib - 11.09.2018, 15:54
Re: Errors but i don't know how to fix them - by Grim_ - 11.09.2018, 16:39

Forum Jump:


Users browsing this thread: 1 Guest(s)