Jump to content

botz00r

Membru
  • Posts

    47
  • Joined

  • Last visited

    Never

Posts posted by botz00r

  1. D:\0.3C\gamemodes\GangWar 0.1.pwn(1624) : error 017: undefined symbol "udb_hash"

    D:\0.3C\gamemodes\GangWar 0.1.pwn(1644) : error 017: undefined symbol "udb_hash"

    D:\0.3C\gamemodes\GangWar 0.1.pwn(4209) : error 017: undefined symbol "SetPlayerMoney"

    D:\0.3C\gamemodes\GangWar 0.1.pwn(4053) : error 017: undefined symbol "SetPlayerMoney"

    Cum as putea sa rezolv aceste erori?

    cauti setplayermoney si in loc de money pui cash cat despre alealte 2 incearca sa le cauti si sa le stergi

  2. Nustiu dece asa dintro data nu mai pleaca serverul :( ! il deschid apar cateva randuri si se inchide repede!! :(

    Crashinfo :

    SA-MP Server: 0.3c
    
    
    
    Exception At Address: 0x7C90100B
    
    
    
    Registers:
    
    EAX: 0x00000020	EBX: 0x00000032	ECX: 0x7FFDD000	EDX: 0x00000020
    
    ESI: 0x00000000	EDI: 0x01CD2F18	EBP: 0x0012FD88	ESP: 0x0012FD50
    
    EFLAGS: 0x00010202
    
    
    
    Stack:
    
    +0000: 0x004A259E   0x00000020   0x004A2BEE   0x00000000
    
    +0010: 0x01CD2F18   0x00000000   0x00000032   0x00484054
    
    +0020: 0x0012FD60   0x0012F974   0x0012FE5C   0x004A6BC4
    
    +0030: 0x004C11D8   0xFFFFFFFF   0x00000000   0x0040551E
    
    +0040: 0x00000032   0x00000000   0x01CD2F08   0x0012FDB8
    
    +0050: 0x01632524   0x004059AF   0x00000001   0x00FF5D68
    
    +0060: 0x00FF5D68   0x0000003F   0x016368EC   0x00401096
    
    +0070: 0x00FF5D68   0x01CD2F18   0x017AD500   0x00402BB3
    
    +0080: 0x00FF5D68   0x00000018   0x0012FDF0   0x01CD2F08
    
    +0090: 0x004F52B0   0x00FF5D68   0x00000001   0x00000000
    
    +00A0: 0x00000000   0x00525A08   0x00525A08   0x00525E40
    
    +00B0: 0x00521E44   0x00525E18   0x00521E44   0x01632524
    
    +00C0: 0x017AD500   0x00000000   0x01630020   0x0017AFDC
    
    +00D0: 0x00483D74   0x00FF5D68   0x0012FE38   0x0000007F
    
    +00E0: 0x00B37818   0xFFFFFFFF   0x0000007F   0x00B37818
    
    +00F0: 0x00498D72   0x004F52B0   0x004C06B9   0x00B37809
    
    +0100: 0xFFFFFFFF   0x00000000   0x00FF5D68   0x0012FEDC
    
    +0110: 0x004B4998   0xFFFFFFFF   0x004981AF   0x00000001
    
    +0120: 0x00000000   0x00000A28   0x0012FFC0   0x7FFDE000
    
    +0130: 0x00002BA3   0x00010101   0x00000032   0x00001E61
    
    
    Server log !
    SA-MP Dedicated Server
    ----------------------
    v0.3c, (C)2005-2010 SA-MP Team
    
    [11:33:22] 
    [11:33:22] Server Plugins
    [11:33:22] --------------
    [11:33:22]  Loaded 0 plugins.
    
    [11:33:22] 
    [11:33:22] Filter Scripts
    [11:33:22] ---------------
    [11:33:22]   Loading filter script 'clock.amx'...
    [11:33:22] 
    --------------------------------------
    [11:33:22]  Remi-X Time-Tools V2.0 started up.
    [11:33:22] --------------------------------------
    
    [11:33:22]   Loaded 1 filter scripts.
    
    [11:33:22] Pickups Max = 100, Current Pickups = 89
    [11:33:22] 
    
    [11:33:22] [junkbuster] Current JunkBuster configuration:
    

  3. Am o comanda pentru /mute doar ca nu e compatibila cu gm-ul meu. e zcmd cum as putea faceo pentru strcmp?

    //at top of script
    #include <zcmd>
    forward UnmutePlayer(playerid);
    new Muted[MAX_PLAYERS];
    
    
    zcmd(mute, playerid, params[]) //with time in minutes
    {
        if(IsPlayerAdmin(playerid))
        {
            new mplayer, time, reason[96];
            if(!sscanf(params, "uis", mplayer, time, reason))
            {
                Muted[mplayer] = 1;
                SetTimerEx("UnmutePlayer", false, 60000*time, "i", playerid);
                new string[128], name[MAX_PLAYER_NAME];
                GetPlayerName(playerid, name, sizeof(name));
                format(string, sizeof(string), "You were muted by %s for %d minutes. Reason: %s", name, time, reason);
                SendClientMessage(mplayer, 0xFF3300FF, string);
                return 1;
            }
            else return SendClientMessage(playerid, 0xFFFFFFFF, "USAGE: /mute [id/partname] [time in minutes] [reason]);
        }
        else return SendClientMessage(playerid, 0xFF3300FF, "ERROR: You are not an admin and may not use this command!");
    }
    
    public UnmutePlayer(playerid)
    {
        SendClientMessage(playerid, 0xFFFFFFFF, "SERVER: You have been unmuted.");
        Muted[playerid] = 0;
    }
    
    public OnPlayerText(playerid, text[])
    {
        if(Muted[playerid]) SendClientMessage(playerid, 0xFF3300FF, "SERVER: You are muted and may not speak!"), return 0;
        else return 1;
    }

  4. Ruben" post="62685" timestamp="1301080089"]

    Da se poate dar nu mai mult de 16 fs-uri de aceia trebuie bagate in Gm

    Iei fs-ul,il bagi in folderu filterscripts din server,apoi numele al treci la server.cfg la linia filterscripts ex:

    Filterscripts Ladmin4v2 animlist NUMELE FS-ULUI TAU

    apoi dai save si dai drumu la server

    Alta medoda nu cred ca mai exista decat sa-l bagi aici sau in GM

    Asta cautam mersi mult :)

  5. Am descarcat niste anim-uri doar ca sunt in pwn si amx cum pot sa le instalez pe gm ?!

    Uitati pwn-ul .. zicetim si mie unde trebuie sa le bag in gm ca am incercat da am dat numai de errori

    /*==============================================================================|
    ================================================================================|
    | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
    | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
    ================================================================================|
    ::::::::::::::::::::::::::::::::::::::::::::::                                  |
    :: [FS]VyoAnims                             ::                                  |
    ::                                          ::                                  |
    :: Contact: Pe Forum                        ::                                  |
    ::Visiteaza Forumul: http://vyo.fnhost.org  ::                                  |
    ::                                          ::                                  |
    :: Creat de Vyorel                          ::                                  |
    :: In data de 25.12.2008                    ::                                  |
    ::::::::::::::::::::::::::::::::::::::::::::::                                  |
    ::        Extreme-Zone Community            ::                                  |
    ::::::::::::::::::::::::::::::::::::::::::::::                                  |
    ================================================================================*/
    #include <a_samp>
    
    #define COLOR_BLUE 0x33AAFFFF
    #define COLOR_YELLOW 0xFFFF00AA
    
    #define SPECIAL_ACTION_PISSING 68
    
    public OnFilterScriptInit()
    {
    	print("\n--------------------------------------");
    	print("           VyoAnims Incarcat!           ");
    	print("--------------------------------------\n");
    	return 1;
    }
    
    public OnFilterScriptExit()
    {
    	print("\n--------------------------------------");
    	print("           VyoAnims Descarcat!          ");
    	print("--------------------------------------\n");
    	return 1;
    }
    
    public OnPlayerConnect(playerid)
    {
        SendClientMessage(playerid, COLOR_YELLOW,"Scrie /vanims pentru a vedea lista de animatii misto!");
        SendClientMessage(playerid, COLOR_YELLOW,"Script creat de [DSK]Vyorel!");
        return 1;
    }
    
    public OnPlayerCommandText(playerid, cmdtext[])
    {
    	if (strcmp("/vanims", cmdtext, true) == 0)
    	{
    		SendClientMessage(playerid, COLOR_BLUE, "/relax | /scared | /sick | /wave | /spank | /taichi | /crossarms |");
            SendClientMessage(playerid, COLOR_BLUE, "/wank | /kiss | /talk | /fucku | /cocaine | /rocky | /sit | /smoke |");
            SendClientMessage(playerid, COLOR_BLUE, "/beach | /lookout | /circle | /medic | /chat | /die | /slapa | /rofl |");
            SendClientMessage(playerid, COLOR_BLUE, "/glitched | /fakefire | /bomb | /robman | /handsup | /piss |");
            SendClientMessage(playerid, COLOR_BLUE, "/getin | /skate | /cover | /fart | /vomit | /drunk |");
            SendClientMessage(playerid, COLOR_BLUE, "/funnywalk | /kickass | /cell | /laugh | /eat | /injured |");
            SendClientMessage(playerid, COLOR_BLUE, "/slapass | /laydown | /arrest | /laugh | /eat | /carjack |");
            return 1;
    	}
    	else if (strcmp(cmdtext, "/relax", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid,"BEACH", "bather", 4.0, 1, 0, 0, 0, 0);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/stopani", true)==0)
    	{
            ClearAnimations(playerid);
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/handsup", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    			SetPlayerSpecialAction(playerid,SPECIAL_ACTION_HANDSUP);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/bomb", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid, "BOMBER", "BOM_Plant", 4.0, 0, 0, 0, 0, 0);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/robman", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid, "SHOP", "ROB_Loop_Threat", 4.0, 1, 0, 0, 0, 0);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/wank", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid,"PAULNMAC", "wank_loop", 1.800001, 1, 0, 0, 1, 600);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/crossarms", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid,"PAULNMAC", "wank_loop", 1.800001, 1, 0, 0, 1, 600);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/taichi", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid,"PARK","Tai_Chi_Loop",4.0,1,0,0,0,0);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/spank", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid, "SWEET", "sweet_ass_slap", 4.0, 0, 0, 0, 0, 0);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/wave", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid, "ON_LOOKERS", "wave_loop", 4.0, 1, 0, 0, 0, 0);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/sick", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid, "FOOD", "EAT_Vomit_P", 3.0, 0, 0, 0, 0, 0);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/scared", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid, "ped", "cower", 3.0, 1, 0, 0, 0, 0);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/talk", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    			ApplyAnimation(playerid,"PED","IDLE_CHAT",1.800001, 1, 1, 1, 1, 13000);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/kiss", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    			ApplyAnimation(playerid,"KISSING", "Grlfrd_Kiss_02", 1.800001, 1, 0, 0, 1, 600);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/sit", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    			ApplyAnimation(playerid,"INT_OFFICE", "OFF_Sit_Bored_Loop", 1.800001, 1, 0, 0, 1, 600);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/fucku", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    			ApplyAnimation(playerid,"ped", "fucku", 4.1, 0, 1, 1, 1, 1 );
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/cocaine", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    			ApplyAnimation(playerid,"CRACK", "crckdeth2", 1.800001, 1, 0, 0, 1, 600);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/rocky", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    			ApplyAnimation(playerid,"GYMNASIUM", "GYMshadowbox", 1.800001, 1, 0, 0, 1, 600);
    		}
    	    return 1;
    	}
    	else if (strcmp(cmdtext, "/smoke", true)==0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    			ApplyAnimation(playerid,"SMOKING", "M_smklean_loop", 4.0, 1, 0, 0, 0, 0);
    		}
    	    return 1;
    	}
    	else if (strcmp("/beach", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    ApplyAnimation(playerid,"BEACH","SitnWait_loop_W",4.1,0,1,1,1,1);
    		}
    		return 1;
    	}
    	else if (strcmp("/lookout", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    ApplyAnimation(playerid,"ON_LOOKERS","lkup_in",4.1,0,1,1,1,1);
    		}
    		return 1;
    	}
    	else if (strcmp("/circle", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    ApplyAnimation(playerid,"CHAINSAW","CSAW_Hit_2",4.1,0,1,1,1,1);
    		}
    		return 1;
    	}
    	else if (strcmp("/medic", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    ApplyAnimation(playerid,"MEDIC","CPR",4.1,0,1,1,1,1);
    		}
    		return 1;
    	}
    	else if (strcmp("/chat", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    ApplyAnimation(playerid,"PED","IDLE_CHAT",4.1,0,1,1,1,1);
    		}
    		return 1;
    	}
    	else if (strcmp("/die", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    ApplyAnimation(playerid,"PED","BIKE_fallR",4.1,0,1,1,1,1);
    		}
    		return 1;
    	}
    	else if (strcmp("/slapa", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    ApplyAnimation(playerid,"PED","BIKE_elbowL",4.1,0,1,1,1,1);
            }
    		return 1;
    	}
    	else if (strcmp("/rofl", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    ApplyAnimation(playerid,"PED","Crouch_Roll_L",4.1,0,1,1,1,1);
    		}
    		return 1;
    	}
    	else if (strcmp("/glitched", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    ApplyAnimation(playerid,"TATTOOS","TAT_Sit_Out_O",4.1,0,1,1,1,1);
    		}
    		return 1;
    	}
    	else if (strcmp("/fakefire", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    ApplyAnimation(playerid,"SILENCED","SilenceCrouchfire",4.1,0,1,1,1,1);
    		}
    		return 1;
    	}
    	else if (strcmp("/fart", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    PlayerPlaySound(playerid, 1147, 0.0, 0.0, 0.0);
    		}
    		return 1;
    	}
    	else if (strcmp("/vomit", cmdtext, true) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid, "FOOD", "EAT_Vomit_P", 3.0, 0, 0, 0, 0, 0); // Vomit BAH!
                PlayerPlaySound(playerid, 1169, 0.0, 0.0, 0.0);
            }
            return 1;
    	}
    	else if (strcmp("/drunk", cmdtext, true, 10) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
    		    ApplyAnimation(playerid,"PED","WALK_DRUNK",4.1,0,1,1,1,1);
    		}
    		return 1;
    	}
    	else if (strcmp("/getin", cmdtext, true) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid,"NEVADA","NEVADA_getin",4.1,0,1,1,1,1);
            }
            return 1;
        }
    	else if (strcmp("/piss", cmdtext, true) == 0)
        {
            if (GetPlayerState(playerid)== 1)
    	    {
                SetPlayerSpecialAction(playerid, SPECIAL_ACTION_PISSING);
            }
            return 1;
        }
    	else if (strcmp("/funnywalk", cmdtext, true) == 0)
    	{
            if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid,"WUZI","Wuzi_Walk",4.1,0,1,1,1,1);
            }
      		return 1;
        }
    	else if (strcmp("/kickass", cmdtext, true) == 0)
    	{
    		if (GetPlayerState(playerid)== 1)
    	    {
                ApplyAnimation(playerid,"FIGHT_E","Hit_fightkick",4.1,0,1,1,1,1);
            }
            return 1;
        }
     	if(strcmp("/cell", cmdtext, true) == 0)
    	 {
    		SetPlayerSpecialAction(playerid,SPECIAL_ACTION_USECELLPHONE);
            return 1;
        }
        if (strcmp("/laugh", cmdtext, true) == 0)
    	{
            ApplyAnimation(playerid, "RAPPING", "Laugh_01", 4.0, 0, 0, 0, 0, 0); // Laugh
            return 1;
    	}
        if (strcmp("/eat", cmdtext, true) == 0)
    	{
            ApplyAnimation(playerid, "FOOD", "EAT_Burger", 3.0, 0, 0, 0, 0, 0); // Eat Burger
            return 1;
    	}
        if(strcmp("/injured", cmdtext, true) == 0)
    	{
            ApplyAnimation(playerid, "SWEET", "Sweet_injuredloop", 4.0, 1, 0, 0, 0, 0);
            return 1;
        }
        if (strcmp("/slapass", cmdtext, true) == 0)
    	{
            ApplyAnimation(playerid, "SWEET", "sweet_ass_slap", 4.0, 0, 0, 0, 0, 0); // Ass Slapping
            return 1;
    	}
        if (strcmp("/laydown", cmdtext, true) == 0)
    	{
            ApplyAnimation(playerid,"BEACH", "bather", 4.0, 1, 0, 0, 0, 0); // Lay down
            return 1;
     	}
        if (strcmp("/arrest", cmdtext, true) == 0)
    	{
            ApplyAnimation(playerid,"ped", "ARRESTgun", 4.0, 0, 1, 1, 1, -1); // Gun Arrest
            return 1;
     	}
        if(strcmp("/carjack", cmdtext, true) == 0)
    	{
    		ApplyAnimation(playerid,"PED","CAR_jackedLHS",4.0,0,1,1,1,0);
            return 1;
        }
    	return 0;
    }
    //==============================[Sfarsit]=======================================
    //-------------------------http://vyo.fnhost.org--------------------------------
    //==============================[Sfarsit]====================================

  6. Buna seara , de curand am pus scriptul pentru newbie (/n) doar ca am o problema sunt admin si imi zice cand incerc sa scriu ceva pe /n ca am depasit levelul pentru a scrie pe /n ca si cum ar fi un player normal care are lvl 4+ .. ce pot sa fac ca sa pot scrie pe /n si ca sa si vad ce scriu incepatori tot pe /n

  7. Nustiu dece asa dintro data dau sa compilez si imi zice :

    Pawn compiler 3.2.3664	 	 	Copyright (c) 1997-2006, ITB CompuPhase
    Dupaia ma uit in gamemodes si vad ca gamemode-ul compilat are 1kb pornesc serverul si imi da alta erroare :
    Script[gamemodes/gf.amx]: Run time error 17: "Invalid/unsupported P-code file format"

  8. Buna seara , dupa ce am modificat ceva la gm , adica am scos de la masini scrisul ala pe masini tip LS-PD-03 dupa ce am dat compile mi-a dat warning-uri ... uitati :

    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8148) : warning 204: symbol is assigned a value that is never used: "bike1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8149) : warning 204: symbol is assigned a value that is never used: "bike2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8150) : warning 204: symbol is assigned a value that is never used: "bike3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8151) : warning 204: symbol is assigned a value that is never used: "bike4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8152) : warning 204: symbol is assigned a value that is never used: "bike5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8153) : warning 204: symbol is assigned a value that is never used: "bike6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8154) : warning 204: symbol is assigned a value that is never used: "bike7"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8155) : warning 204: symbol is assigned a value that is never used: "bike8"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8161) : warning 204: symbol is assigned a value that is never used: "bloodz1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8162) : warning 204: symbol is assigned a value that is never used: "bloodz2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8163) : warning 204: symbol is assigned a value that is never used: "bloodz3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8164) : warning 204: symbol is assigned a value that is never used: "bloodz4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8165) : warning 204: symbol is assigned a value that is never used: "bloodz5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8166) : warning 204: symbol is assigned a value that is never used: "bloodz6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8167) : warning 204: symbol is assigned a value that is never used: "bloodz7"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8118) : warning 204: symbol is assigned a value that is never used: "boat1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8119) : warning 204: symbol is assigned a value that is never used: "boat2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8120) : warning 204: symbol is assigned a value that is never used: "boat3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8121) : warning 204: symbol is assigned a value that is never used: "boat4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8122) : warning 204: symbol is assigned a value that is never used: "boat5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8096) : warning 204: symbol is assigned a value that is never used: "bus1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8097) : warning 204: symbol is assigned a value that is never used: "bus2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8156) : warning 204: symbol is assigned a value that is never used: "camion1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8157) : warning 204: symbol is assigned a value that is never used: "camion2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8199) : warning 204: symbol is assigned a value that is never used: "civ1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8208) : warning 204: symbol is assigned a value that is never used: "civ10"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8209) : warning 204: symbol is assigned a value that is never used: "civ11"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8210) : warning 204: symbol is assigned a value that is never used: "civ12"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8211) : warning 204: symbol is assigned a value that is never used: "civ13"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8212) : warning 204: symbol is assigned a value that is never used: "civ14"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8213) : warning 204: symbol is assigned a value that is never used: "civ15"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8214) : warning 204: symbol is assigned a value that is never used: "civ16"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8215) : warning 204: symbol is assigned a value that is never used: "civ17"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8216) : warning 204: symbol is assigned a value that is never used: "civ18"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8217) : warning 204: symbol is assigned a value that is never used: "civ19"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8200) : warning 204: symbol is assigned a value that is never used: "civ2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8218) : warning 204: symbol is assigned a value that is never used: "civ20"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8219) : warning 204: symbol is assigned a value that is never used: "civ21"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8220) : warning 204: symbol is assigned a value that is never used: "civ22"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8221) : warning 204: symbol is assigned a value that is never used: "civ23"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8222) : warning 204: symbol is assigned a value that is never used: "civ24"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8223) : warning 204: symbol is assigned a value that is never used: "civ25"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8224) : warning 204: symbol is assigned a value that is never used: "civ26"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8225) : warning 204: symbol is assigned a value that is never used: "civ27"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8226) : warning 204: symbol is assigned a value that is never used: "civ28"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8227) : warning 204: symbol is assigned a value that is never used: "civ29"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8201) : warning 204: symbol is assigned a value that is never used: "civ3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8228) : warning 204: symbol is assigned a value that is never used: "civ30"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8229) : warning 204: symbol is assigned a value that is never used: "civ31"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8230) : warning 204: symbol is assigned a value that is never used: "civ32"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8231) : warning 204: symbol is assigned a value that is never used: "civ33"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8232) : warning 204: symbol is assigned a value that is never used: "civ34"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8233) : warning 204: symbol is assigned a value that is never used: "civ35"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8234) : warning 204: symbol is assigned a value that is never used: "civ36"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8235) : warning 204: symbol is assigned a value that is never used: "civ37"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8236) : warning 204: symbol is assigned a value that is never used: "civ38"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8237) : warning 204: symbol is assigned a value that is never used: "civ39"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8202) : warning 204: symbol is assigned a value that is never used: "civ4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8238) : warning 204: symbol is assigned a value that is never used: "civ40"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8239) : warning 204: symbol is assigned a value that is never used: "civ41"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8240) : warning 204: symbol is assigned a value that is never used: "civ42"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8241) : warning 204: symbol is assigned a value that is never used: "civ43"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8242) : warning 204: symbol is assigned a value that is never used: "civ44"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8243) : warning 204: symbol is assigned a value that is never used: "civ45"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8244) : warning 204: symbol is assigned a value that is never used: "civ46"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8245) : warning 204: symbol is assigned a value that is never used: "civ47"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8246) : warning 204: symbol is assigned a value that is never used: "civ48"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8247) : warning 204: symbol is assigned a value that is never used: "civ49"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8203) : warning 204: symbol is assigned a value that is never used: "civ5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8248) : warning 204: symbol is assigned a value that is never used: "civ50"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8249) : warning 204: symbol is assigned a value that is never used: "civ51"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8250) : warning 204: symbol is assigned a value that is never used: "civ52"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8251) : warning 204: symbol is assigned a value that is never used: "civ53"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8252) : warning 204: symbol is assigned a value that is never used: "civ54"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8253) : warning 204: symbol is assigned a value that is never used: "civ55"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8254) : warning 204: symbol is assigned a value that is never used: "civ56"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8255) : warning 204: symbol is assigned a value that is never used: "civ57"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8256) : warning 204: symbol is assigned a value that is never used: "civ58"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8257) : warning 204: symbol is assigned a value that is never used: "civ59"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8204) : warning 204: symbol is assigned a value that is never used: "civ6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8258) : warning 204: symbol is assigned a value that is never used: "civ60"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8259) : warning 204: symbol is assigned a value that is never used: "civ61"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8260) : warning 204: symbol is assigned a value that is never used: "civ62"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8205) : warning 204: symbol is assigned a value that is never used: "civ7"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8206) : warning 204: symbol is assigned a value that is never used: "civ8"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8207) : warning 204: symbol is assigned a value that is never used: "civ9"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8067) : warning 204: symbol is assigned a value that is never used: "cop1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8076) : warning 204: symbol is assigned a value that is never used: "cop10"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8079) : warning 204: symbol is assigned a value that is never used: "cop11"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8080) : warning 204: symbol is assigned a value that is never used: "cop12"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8081) : warning 204: symbol is assigned a value that is never used: "cop13"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8082) : warning 204: symbol is assigned a value that is never used: "cop14"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8083) : warning 204: symbol is assigned a value that is never used: "cop15"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8084) : warning 204: symbol is assigned a value that is never used: "cop16"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8085) : warning 204: symbol is assigned a value that is never used: "cop17"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8086) : warning 204: symbol is assigned a value that is never used: "cop18"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8088) : warning 204: symbol is assigned a value that is never used: "cop19"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8068) : warning 204: symbol is assigned a value that is never used: "cop2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8089) : warning 204: symbol is assigned a value that is never used: "cop20"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8090) : warning 204: symbol is assigned a value that is never used: "cop21"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8092) : warning 204: symbol is assigned a value that is never used: "cop22"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8098) : warning 204: symbol is assigned a value that is never used: "cop23"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8099) : warning 204: symbol is assigned a value that is never used: "cop24"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8123) : warning 204: symbol is assigned a value that is never used: "cop25"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8124) : warning 204: symbol is assigned a value that is never used: "cop26"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8125) : warning 204: symbol is assigned a value that is never used: "cop27"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8269) : warning 204: symbol is assigned a value that is never used: "cop28"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8270) : warning 204: symbol is assigned a value that is never used: "cop29"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8069) : warning 204: symbol is assigned a value that is never used: "cop3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8271) : warning 204: symbol is assigned a value that is never used: "cop30"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8272) : warning 204: symbol is assigned a value that is never used: "cop31"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8273) : warning 204: symbol is assigned a value that is never used: "cop32"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8274) : warning 204: symbol is assigned a value that is never used: "cop33"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8275) : warning 204: symbol is assigned a value that is never used: "cop34"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8276) : warning 204: symbol is assigned a value that is never used: "cop35"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8277) : warning 204: symbol is assigned a value that is never used: "cop36"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8278) : warning 204: symbol is assigned a value that is never used: "cop37"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8279) : warning 204: symbol is assigned a value that is never used: "cop38"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8280) : warning 204: symbol is assigned a value that is never used: "cop39"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8070) : warning 204: symbol is assigned a value that is never used: "cop4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8281) : warning 204: symbol is assigned a value that is never used: "cop40"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8282) : warning 204: symbol is assigned a value that is never used: "cop41"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8283) : warning 204: symbol is assigned a value that is never used: "cop42"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8284) : warning 204: symbol is assigned a value that is never used: "cop43"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8285) : warning 204: symbol is assigned a value that is never used: "cop44"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8286) : warning 204: symbol is assigned a value that is never used: "cop45"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8287) : warning 204: symbol is assigned a value that is never used: "cop46"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8288) : warning 204: symbol is assigned a value that is never used: "cop47"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8289) : warning 204: symbol is assigned a value that is never used: "cop48"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8290) : warning 204: symbol is assigned a value that is never used: "cop49"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8071) : warning 204: symbol is assigned a value that is never used: "cop5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8291) : warning 204: symbol is assigned a value that is never used: "cop50"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8072) : warning 204: symbol is assigned a value that is never used: "cop6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8073) : warning 204: symbol is assigned a value that is never used: "cop7"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8074) : warning 204: symbol is assigned a value that is never used: "cop8"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8075) : warning 204: symbol is assigned a value that is never used: "cop9"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8168) : warning 204: symbol is assigned a value that is never used: "cripz1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8169) : warning 204: symbol is assigned a value that is never used: "cripz2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8170) : warning 204: symbol is assigned a value that is never used: "cripz3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8171) : warning 204: symbol is assigned a value that is never used: "cripz4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8172) : warning 204: symbol is assigned a value that is never used: "cripz5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8173) : warning 204: symbol is assigned a value that is never used: "cripz6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8077) : warning 204: symbol is assigned a value that is never used: "hitman1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8078) : warning 204: symbol is assigned a value that is never used: "hitman2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8100) : warning 204: symbol is assigned a value that is never used: "hitman3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8127) : warning 204: symbol is assigned a value that is never used: "hitman4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8142) : warning 204: symbol is assigned a value that is never used: "kart1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8143) : warning 204: symbol is assigned a value that is never used: "kart2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8144) : warning 204: symbol is assigned a value that is never used: "kart3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8145) : warning 204: symbol is assigned a value that is never used: "kart4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8146) : warning 204: symbol is assigned a value that is never used: "kart5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8147) : warning 204: symbol is assigned a value that is never used: "kart6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8190) : warning 204: symbol is assigned a value that is never used: "lcn1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8191) : warning 204: symbol is assigned a value that is never used: "lcn2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8192) : warning 204: symbol is assigned a value that is never used: "lcn3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8193) : warning 204: symbol is assigned a value that is never used: "lcn4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8186) : warning 204: symbol is assigned a value that is never used: "lcn5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8087) : warning 204: symbol is assigned a value that is never used: "medic1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8091) : warning 204: symbol is assigned a value that is never used: "medic2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8093) : warning 204: symbol is assigned a value that is never used: "medic3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8094) : warning 204: symbol is assigned a value that is never used: "medic4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8095) : warning 204: symbol is assigned a value that is never used: "medic5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8115) : warning 204: symbol is assigned a value that is never used: "medic6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8128) : warning 204: symbol is assigned a value that is never used: "news1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8129) : warning 204: symbol is assigned a value that is never used: "news2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8130) : warning 204: symbol is assigned a value that is never used: "news3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8174) : warning 204: symbol is assigned a value that is never used: "nortenoscart1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8175) : warning 204: symbol is assigned a value that is never used: "nortenoscart2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8176) : warning 204: symbol is assigned a value that is never used: "nortenoscart3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8177) : warning 204: symbol is assigned a value that is never used: "nortenoscart4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8178) : warning 204: symbol is assigned a value that is never used: "nortenoscart5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8179) : warning 204: symbol is assigned a value that is never used: "nortenoscart6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8134) : warning 204: symbol is assigned a value that is never used: "plane1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8135) : warning 204: symbol is assigned a value that is never used: "plane2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8136) : warning 204: symbol is assigned a value that is never used: "plane3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8137) : warning 204: symbol is assigned a value that is never used: "plane4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8138) : warning 204: symbol is assigned a value that is never used: "plane5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8139) : warning 204: symbol is assigned a value that is never used: "plane6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8140) : warning 204: symbol is assigned a value that is never used: "plane7"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8141) : warning 204: symbol is assigned a value that is never used: "plane8"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8104) : warning 204: symbol is assigned a value that is never used: "rent1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8105) : warning 204: symbol is assigned a value that is never used: "rent2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8106) : warning 204: symbol is assigned a value that is never used: "rent3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8107) : warning 204: symbol is assigned a value that is never used: "rent4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8108) : warning 204: symbol is assigned a value that is never used: "rent5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8109) : warning 204: symbol is assigned a value that is never used: "rent6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8101) : warning 204: symbol is assigned a value that is never used: "school1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8102) : warning 204: symbol is assigned a value that is never used: "school2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8103) : warning 204: symbol is assigned a value that is never used: "school3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8131) : warning 204: symbol is assigned a value that is never used: "school4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8132) : warning 204: symbol is assigned a value that is never used: "school5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8133) : warning 204: symbol is assigned a value that is never used: "school6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8180) : warning 204: symbol is assigned a value that is never used: "surenoscart1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8181) : warning 204: symbol is assigned a value that is never used: "surenoscart2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8182) : warning 204: symbol is assigned a value that is never used: "surenoscart3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8183) : warning 204: symbol is assigned a value that is never used: "surenoscart4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8184) : warning 204: symbol is assigned a value that is never used: "surenoscart5"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8185) : warning 204: symbol is assigned a value that is never used: "surenoscart6"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8114) : warning 204: symbol is assigned a value that is never used: "taxi1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8116) : warning 204: symbol is assigned a value that is never used: "taxi2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8117) : warning 204: symbol is assigned a value that is never used: "taxi3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8126) : warning 204: symbol is assigned a value that is never used: "taxi4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8110) : warning 204: symbol is assigned a value that is never used: "truck1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8111) : warning 204: symbol is assigned a value that is never used: "truck2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8112) : warning 204: symbol is assigned a value that is never used: "truck3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8113) : warning 204: symbol is assigned a value that is never used: "truck4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8194) : warning 204: symbol is assigned a value that is never used: "yakuza1"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8195) : warning 204: symbol is assigned a value that is never used: "yakuza2"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8196) : warning 204: symbol is assigned a value that is never used: "yakuza3"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8197) : warning 204: symbol is assigned a value that is never used: "yakuza4"
    C:\Documents and Settings\Administrator\Desktop\The Godfather GM\gamemodes\gf.pwn(8187) : warning 204: symbol is assigned a value that is never used: "yakuza5"
    Pawn compiler 3.2.3664	 	 	Copyright (c) 1997-2006, ITB CompuPhase
    
    Header size:           9468 bytes
    Code size:          1563536 bytes
    Data size:          5373080 bytes
    Stack/heap size:      16384 bytes; estimated max. usage=4123 cells (16492 bytes)
    Total requirements: 6962468 bytes
    
    211 Warnings.

    Ce pot face ca sa nu mai imi deie warning-urile astea la fiecare compliare.

  9. Buna ziua, am niste probleme cu serverul de sa-mp una dintre ele este urmatoarea nustiu cum sa modific ca sa nu mai deie cont premium la cei ce se inregistreaza fara sa le dau eu.. a 2 este problema cu mute la multe functii tip /c /d /r merge sa vorbesti chiar daca ai mute ..

  10. Buna seara, am si eu o problema cu un gm sunt incepator si nu prea ma pricep cand folosesc comanda /gethere si teleportez la mine un player el vede tot alb chiar daca este afara din casa/biz find nevoit sa scrie /setint 1 ca sa vada normal.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.