06.09.2010, 04:27
here:
Код:
public OnGameModeInit() { new id; ShowPlayerMarkers(1); ShowNameTags(1); UsePlayerPedAnims(); SetGameModeText("The MAdhouse DM v1.0b"); SendRconCommand("mapname Las Venturas (LV No Limits)"); /////////////////////////////////NPCS//////////////////////////////////// ConnectNPC("MAdBitch","MAdbitch"); ///////////////////////////////////////////////////////////////////////// // Players for (id = 0; id <= 299; id++) { if (id == 265) id = 274; // Skip over the bad ones AddPlayerClass(269,1958.3783,1343.1572,15.3746,270.1425,0,0,24,300,-1,-1); // LV Base spawn //and much others } AddStaticVehicle(563,1619.8687,1262.4503,11.5252,62.2300,1,6); //and much others ///////////////////////////////////////////TIMERS///////////////////////////////////// SetTimer("SendMSG", 60000, true); // SetTimer("SendMSG2", 90000, true); SetTimer("Speedometer", 100, true); SetTimer("InteriorCheck", 3000, true); //////////////////////////////////////////////////////////////////////////////// return 1; }