30.08.2009, 15:28
Ok, I Have My Game Mode, But Now When I Try To Change The Game Mode Text Name.
Its Still The Same Name! Whats Going On?
Its Still The Same Name! Whats Going On?
Код:
// Los Santos Gang Wars SA-MP Game Mode By Dustin!
// Please Do Not Edit This Game Mode Or Remove My Credits!
#include <a_samp>
#include <core>
#include <float>
//Global stuff and defines for our gamemode
static gTeam[MAX_PLAYERS]; // Tracks the team assignment for each player
new gPlayerClass[MAX_PLAYERS];
//Color Defines
#define COLOR_GREY 0xAFAFAFAA
#define COLOR_GREEN 0x33AA33AA
#define COLOR_RED 0xAA3333AA
#define COLOR_YELLOW 0xFFFF00AA
#define COLOR_PINK 0xFF66FFAA
#define COLOR_BLUE 0x0000BBAA
#define COLOR_LIGHTBLUE 0x33CCFFAA
#define COLOR_DARKRED 0x660000AA
#define COLOR_ORANGE 0xFF9900AA
#define COLOR_PURPLE 0x800080AA
//Team Defines
#define TEAM_GROVE 0
#define TEAM_BALLAS 1
#define TEAM_AZTECAS 2
#define TEAM_VAGOS 3
new BALLAS1;
new BALLAS2;
new GROVE1;
new AZTECA1;
new AZTECA2;
new VAGO1;
new VAGO2;
new HOUSE1A;
new HOUSE1B;
new HOUSE2A;
new HOUSE2B;
new HOUSE3A;
new HOUSE3B;
new HOUSE4A;
new HOUSE4B;
new Text:Textdraw0;
new Text:Textdraw1;
new Text:Textdraw2;
new Text:Textdraw3;
new Text:Textdraw4;
new Text:Textdraw5;
forward SetupPlayerForGangHouse(playerid);
forward SetupPlayerForGangHouseText(playerid);
forward GangSign(playerid);
main()
{
print("Los Santos Gang Wars By Dustin");
}
public OnGameModeInit()
{
SetGameModeText("LS Gang Wars v1.3"); <<<<<<<<<<<<<<<<<<<<<<<<<<<< Right Here! I Set It To v1.3, Then Compiled, Launched My
Server And It Said v1.2! What The Fuck? I Updated It! But No, Its Says v1.2 On Server List!

