14.01.2011, 22:07
Quote:
|
Well. This could mean anything. Can you please try finding the line or Compiling the script? If you find an error on compiling the script, post that line the error is saying.
|
I am not running any plugins its a BASE gamemode I began editing it a few days ago...I don't think it needs any plugins LOL
Quote:
|
By the description of that, He Could have several things:
Code Problems, Plugin Problems, Plugin Missing as you have said and Include Problems. -I suggest that you check if there are any errors with compiling. If there are, post them here, and the line of error -Check for any missing plugins If there are missing plugins either remove them or download them and add them to your server package -Check if all the includes used in that script are downloaded If not, Same as with the Plugins. Download or Remove the include line -Redownload all your plugins & includes and be sure their Up-To-Date If all of this doesn't work, and all is fine then your Server package, for some Weird reason could be corrupted (This is the most Unlikely issue to happen) Try Downloading a brand new package from SAMP and Install the Gamemode and Filterscripts, scriptfiles & plugins |
Код:
public OnGameModeInit()
{
FadeInit();
SetTimer("ArmourUpdate", 1000, true);
SetGameModeText(".:ZombiesVsHumans:.");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
//AddPlayerClass(162, 0.0, 0.0, 0.0, 0.0, 0, 0, 0, 0, 0, 0);
SetTimer("rMessage", TIMER, true);
SetTimer("NoZombieWeapons",1000,true);
SetTimer("PayRanks",600000,true);
SetNameTagDrawDistance(5);
SetTeamCount(2);
ShowNameTags(1);
ShowPlayerMarkers(0);
UsePlayerPedAnims();
AllowInteriorWeapons(1);
DisableInteriorEnterExits();
SetWorldTime(0);
for(new i; i<MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
OnPlayerConnect(i);
}
}
MaxP = GetMaxPlayers();
drawagain();
SetTimer("pOnline", SEC2, 1);
SetTimer("StatsInfromation",300 , 1);
for(new playerid = 0; playerid < MAX_PLAYERS; playerid++)
{
PlayerStats[playerid] = TextDrawCreate(231.000000,405.000000,"");
Textdraw1 = TextDrawCreate(260.000000,391.000000,"STATS");
TextDrawUseBox(PlayerStats[playerid],1);
TextDrawBoxColor(PlayerStats[playerid],0xffffff33);
TextDrawTextSize(PlayerStats[playerid],389.000000,119.000000);
TextDrawAlignment(PlayerStats[playerid],0);
TextDrawAlignment(Textdraw1,0);
TextDrawBackgroundColor(PlayerStats[playerid],0x000000ff);
TextDrawBackgroundColor(Textdraw1,0xff000033);
TextDrawFont(PlayerStats[playerid],2);
TextDrawLetterSize(PlayerStats[playerid],0.399999,1.200000);
TextDrawFont(Textdraw1,2);
TextDrawLetterSize(Textdraw1,0.799999,1.300000);
TextDrawColor(PlayerStats[playerid],0xffffffff);
TextDrawColor(Textdraw1,0xffffffff);
TextDrawSetOutline(PlayerStats[playerid],1);
TextDrawSetOutline(Textdraw1,1);
TextDrawSetProportional(PlayerStats[playerid],1);
TextDrawSetProportional(Textdraw1,1);
TextDrawSetShadow(PlayerStats[playerid],1);
TextDrawSetShadow(Textdraw1,1);
Save(playerid);
}
return 1;
}


