23.03.2015, 06:53
So i have been FAILING these days, I have a bonus zone timer, and my server keeps shutting down for no reason in my friend's VPS, Don't you think it's because of it?
Can someone tell me if i scripted it wrong which causes a lot of troubles with in the VPS?
Can someone tell me if i scripted it wrong which causes a lot of troubles with in the VPS?
PHP код:
#define MAX_WAR 100
new SpecialZone[MAX_WAR];
stock AvailableZone(id)
{
switch(id)
{
case SnakeFarm, CiaHeadquarters, CluckinBell, PetrolStation, BaitShop, Ranch, RadarBase, OilDepot, Quarry, TheBigSpreadRanch: return 1;
}
return 0;
}
public SpecialTimer()
{
new i = random(MAX_WAR+1);
new string[128];
if(AvailableZone(i) == 1)
{
if(SpecialZone[i] == 0)
{
format(string, sizeof(string), "* Zone %s is now a bonus zone, Capture it to get a special/additional rewards.", GetZoneName(i));
SendClientMessageToAll(COLOR_PINK, string);
SpecialZone[i] = 1;
print(string);
}
else
{
format(string, sizeof(string), "* Zone %s is no longer a bonus zone, It will be replaced in the next 3 minutes.", GetZoneName(i));
SendClientMessageToAll(COLOR_PINK, string);
SpecialZone[i] = 0;
print(string);
}
}
else
{
SpecialTimer();
}
return 1;
}