Raised This Month: $12 Target: $400
 3% 

[Help] How to remove!


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
KleirPlays
Member
Join Date: Jun 2013
Location: Portugal
Old 08-05-2014 , 06:37   [Help] How to remove!
Reply With Quote #1

How to remove amx_supermenu from amxmodmenu?
KleirPlays is offline
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 08-05-2014 , 06:41   Re: [Help] How to remove!
Reply With Quote #2

Remove this line
Code:
AddMenuItem("AMX_Super Menu", "amx_supermenu", ADMIN_MENU, PLUGIN);
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline
KleirPlays
Member
Join Date: Jun 2013
Location: Portugal
Old 08-05-2014 , 06:54   Re: [Help] How to remove!
Reply With Quote #3

Already tryed it, doesent work, got errors when I remove that line.
KleirPlays is offline
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 08-05-2014 , 06:55   Re: [Help] How to remove!
Reply With Quote #4

What errors do you get?
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline
KleirPlays
Member
Join Date: Jun 2013
Location: Portugal
Old 08-05-2014 , 07:16   Re: [Help] How to remove!
Reply With Quote #5

201
240
254
1144

PHP Code:
/* * * * * * * * * * * * * * * * * * * * * * * * * * *
 * 
 * AMX Super - Menu
 * Developed by Ryan "YamiKaitou" LeBlanc
 * Maintained by SuperCentral.co Scripting Team
 * Last Update: Jan 17 2014
 * 
 * Minimum Requirements
 * AMX Mod X 1.8.0
 * AMX Super 5.0
 * 
 * Credits
 * AMX Mod X Dev Team (for their plmenu.amxx plugin)
 * bmann|420 (for creating the AMX Super plugin)
 * |PJ|Shorty (for assisting me in finding out the get_concmd function)
 * If I forgot you, let me know what you did and I will add you
 * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * 
 * AMX Mod X script.
 *
 *   AMX Super - Menu (amx_super-menu.sma)
 *   Copyright (C) 2008-2010 Ryan "YamiKaitou" LeBlanc
 *   Copyright (C) 2013-2014 SuperCentral.co
 *
 *   This program is free software; you can redistribute it and/or
 *   modify it under the terms of the GNU General Public License
 *   as published by the Free Software Foundation; either version 2
 *   of the License, or (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 *
 *   In addition, as a special exception, the author gives permission to
 *   link the code of this program with the Half-Life Game Engine ("HL
 *   Engine") and Modified Game Libraries ("MODs") developed by Valve,
 *   L.L.C ("Valve"). You must obey the GNU General Public License in all
 *   respects for all of the code used other than the HL Engine and MODs
 *   from Valve. If you modify this file, you may extend this exception
 *   to your version of the file, but you are not obligated to do so. If
 *   you do not wish to do so, delete this exception statement from your
 *   version.
 * 
 * * * * * * * * * * * * * * * * * * * * * * * * * * */
 
#pragma semicolon 1

#include <amxmodx>
#include <amxmisc>

#define PLUGIN  "AMX_Super Menu"
#define AUTHOR  "SuperCentral.co"
#define VERSION "5.0.2"

enum 
{
    
ALLTALK 1,
    
LOCK,
    
UNLOCK,
    
EXTEND,
    
GRAVITY,
    
FIRE,
    
FLASH,
    
DISARM,
    
ROCKET,
    
UBERSLAP,
    
REVIVE,
    
QUIT,
    
DRUG,
    
TEAMSWAP,
    
HEAL,
    
ARMOR,
    
STACK,
    
BURY,
    
UNBURY,
    
SLAY,
    
GOD,
    
NOCLIP,
    
SPEED,
    
UNAMMO,
    
SWAP,
    
SETMONEY,
    
BADAIM,
    
GAG,
    
UNGAG,
    
MAXVALUE
}

new const 
g_szDisabledCmdsFilename[] = "disabled_cmds.ini";

new 
Trie:g_tDisabledCmds;

new 
g_hMainMenug_hAllTalkMenug_hExtendMenug_hGravityMenu;

new 
g_pMenuEnabled;

new 
g_iMenuPosition[33], g_iMenuPlayers[33][35], g_iMenuPlayersNum[33], g_iMenuProperties[33], g_iMenuProperties2[33], g_iMenu[33];
new 
g_szMenuPlayerName[33][32];

new 
g_szMenuName[64];
new 
g_iAllKeys MENU_KEY_0|MENU_KEY_1|MENU_KEY_2|MENU_KEY_3|MENU_KEY_4|MENU_KEY_5|MENU_KEY_6|MENU_KEY_7|MENU_KEY_8|MENU_KEY_9;
new 
g_hCallback;
new Array:
g_aValueArray[MAXVALUE];
new 
g_iAccessLevel[MAXVALUE];

new 
g_szMenuCommands[][128] = 
{
    
"status",
    
"amx_alltalk %s",
    
"amx_lock %s",
    
"amx_unlock %s",
    
"amx_extend %s",
    
"amx_gravity %s",
    
"amx_fire ^"%s^"",
    
"amx_flash ^"%s^"",
    
"amx_disarm ^"%s^"",
    
"amx_rocket ^"%s^"",
    
"amx_uberslap ^"%s^"",
    
"amx_revive ^"%s^"",
    
"amx_quit ^"%s^"",
    
"amx_drug ^"%s^" 1",
    
"amx_teamswap",
    
"amx_heal ^"%s^" %d",
    
"amx_armor ^"%s^" %d",
    
"amx_stack ^"%s^" %d",
    
"amx_bury ^"%s^"",
    
"amx_unbury ^"%s^"",
    
"amx_slay2 ^"%s^" %d",
    
"amx_godmode ^"%s^" %d",
    
"amx_noclip ^"%s^" %d",
    
"amx_speed ^"%s^" %d",
    
"amx_unammo ^"%s^" %d",
    
"amx_swap ^"%s^" ^"%s^"",
    
"amx_money ^"%s^" %d",
    
"amx_badaim ^"%s^" %d 0",
    
"amx_gag ^"%s^" %s %d",
    
"amx_ungag ^"%s^""
};

new 
g_szCommands[][64] = 
{
    
"nothing",
    
"amx_alltalk",
    
"amx_lock",
    
"amx_unlock",
    
"amx_extend",
    
"amx_gravity",
    
"amx_fire",
    
"amx_flash",
    
"amx_disarm",
    
"amx_rocket",
    
"amx_uberslap",
    
"amx_revive",
    
"amx_quit",
    
"amx_drug",
    
"amx_teamswap",
    
"amx_heal",
    
"amx_armor",
    
"amx_stack",
    
"amx_bury",
    
"amx_unbury",
    
"amx_slay2",
    
"amx_godmode",
    
"amx_noclip",
    
"amx_speed",
    
"amx_unammo",
    
"amx_swap",
    
"amx_money",
    
"amx_badaim",
    
"amx_gag",
    
"amx_ungag"
};

new 
bool:g_bCommandManagerEnabled;

public 
plugin_init()
{
    
register_plugin(PLUGINVERSIONAUTHOR);
    
    
register_cvar("amx_super_menu",VERSION,FCVAR_SERVER|FCVAR_EXTDLL|FCVAR_UNLOGGED|FCVAR_SPONLY);
    
g_pMenuEnabled register_cvar("amx_supermenu_enabled""1");
    
register_dictionary("amx_super_menu.txt");
    
register_dictionary("common.txt");
    
    
// Register New Menus
    
format(g_szMenuNamecharsmax(g_szMenuName), "%L"LANG_PLAYER"AMXSUPER_MENU0");
    
g_hMainMenu menu_create(g_szMenuName"MainMenuHandler");
    
format(g_szMenuNamecharsmax(g_szMenuName), "%L"LANG_PLAYER"AMXSUPER_MENU1");
    
g_hAllTalkMenu menu_create(g_szMenuName"AllTalkMenuHandler");
    
format(g_szMenuNamecharsmax(g_szMenuName), "%L"LANG_PLAYER"AMXSUPER_MENU4");
    
g_hExtendMenu menu_create(g_szMenuName"ExtendMenuHandler");
    
format(g_szMenuNamecharsmax(g_szMenuName), "%L"LANG_PLAYER"AMXSUPER_MENU5");
    
g_hGravityMenu menu_create(g_szMenuName"GravityMenuHandler");
    
    
g_tDisabledCmds TrieCreate();
    
    
g_bCommandManagerEnabled is_plugin_loaded("AMX Super Cmd Manager") == -false true;
    
    
// Register g_hCallbacks
    
g_hCallback menu_makecallback("MenuCallback");    
    
    
// Register Old Menus
    
register_menucmd(register_menuid("Lock Menu"), g_iAllKeys"LockMenuHandler");
    
register_menucmd(register_menuid("Player1 Menu"), g_iAllKeys"Player1MenuHandler");
    
register_menucmd(register_menuid("Player2 Menu"), g_iAllKeys"Player2MenuHandler");
    
register_menucmd(register_menuid("Gag Menu"), g_iAllKeys"GagMenuHandler");
    
    
register_clcmd("say""HandleSay");
    
register_clcmd("say_team""HandleSay");
    
register_concmd("supermenu""HandleCmd"ADMIN_MENU" - Bring up the menu for AMX_Super");
    
register_concmd("amx_supermenu""HandleCmd"ADMIN_MENU" - Bring up the menu for AMX_Super");
    
register_concmd("supermenu_edit""HandleCmd"ADMIN_MENU" - Allows you to edit the values the menu displays");
    
register_concmd("amx_supermenu_edit""HandleCmd"ADMIN_MENU" - Allows you to edit the values the menu displays");
    
register_concmd("amx_reloadcmds""CmdReloadCmds"ADMIN_CVAR"Reloads all amx super commands. (see disabled_cmds.ini)");
    
    
arrayset(g_iAccessLevel, -2MAXVALUE);
    
    
CmdReloadCmds(000); 
}

public 
CmdReloadCmds(idiLeveliCid)
{
    if(!
g_bCommandManagerEnabled || (id && !cmd_access(idiLeveliCid1)))
        return 
PLUGIN_HANDLED;
    
    new 
szDisabledCmdFile[64], iFile;
    
get_configsdir(szDisabledCmdFilecharsmax(szDisabledCmdFile));
    
format(szDisabledCmdFilecharsmax(szDisabledCmdFile), "%s/%s"szDisabledCmdFileg_szDisabledCmdsFilename);
        
    
// read commands into Trie if file exists.
    
if(file_exists(szDisabledCmdFile))
    {
        
// Clear our previous commands before reading new ones.
        
TrieClear(g_tDisabledCmds);
        
        if((
iFile fopen(szDisabledCmdFile"rt")))
        {
            new 
szCurrentCmd[32];
        
            while(!
feof(iFile))
            {
                
fgets(iFileszCurrentCmdcharsmax(szCurrentCmd));
                
trim(szCurrentCmd);
                
                if(!
szCurrentCmd[0] || szCurrentCmd[0] == ';' || szCurrentCmd[0] == '/' && szCurrentCmd[1] == '/')
                    continue;
                    
                
TrieSetCell(g_tDisabledCmdsszCurrentCmd1);
            }
            
            
fclose(iFile);
        }
    
        else            
// TODO: ML
            
log_amx("[AMXX] Failed to open '%s' !"g_szDisabledCmdsFilename);
    }

    return 
PLUGIN_CONTINUE;
}

public 
plugin_cfg()
{
    new 
iIndex 0szCommand[64], iFlagsszInfo[128], iFlag 52428799k;
    new 
iMax get_concmdsnum(iFlag);
    
    while(
iIndex <= iMax)
    {
        
get_concmd(iIndex++, szCommandcharsmax(szCommand), iFlagsszInfocharsmax(szInfo), iFlag);
        
        
1;
        while (
MAXVALUE && !equal(szCommandg_szCommands[k])) k++;
        
        if (
!= MAXVALUEg_iAccessLevel[k] = iFlags;
    }
    
    
BuildArrays();
    
BuildMenu();
}

public 
HandleSay(id)
{
    new 
szArg[32];
    
read_argv(1szArgcharsmax(szArg));
    
    if (
equal(szArg"/supermenu"))
    {
        
menu_display(idg_hMainMenu0);
        return 
PLUGIN_HANDLED;
    }
    
    return 
PLUGIN_CONTINUE;
}

public 
HandleCmd(idiLeveliCid)
{
    new 
szCommand[64];
    
read_argv(0szCommandcharsmax(szCommand));
        
    if (
equal(szCommand"supermenu") || equal(szCommand"amx_supermenu"))
        
menu_display(idg_hMainMenu0);
    else if (
equal(szCommand"supermenu_edit") || equal(szCommand"amx_supermenu_edit"))
    {
        if (
read_argc() < 2)
        {
            
client_print(idprint_console"%L"id"AMXSUPER_NOPARM");
            
client_print(idprint_console"%L %s <menu to edit> <value1> [value2] [value3] [value4] ..."id"USAGE"szCommand);
            return 
PLUGIN_HANDLED;
        }
        
        new 
szType[10], iValue, Array:aTemp ArrayCreate();
        
read_argv(1szTypecharsmax(szType));
        
        if (
equal(szType"extend"))
            
iValue EXTEND;
        else if (
equal(szType"gravity"))
            
iValue GRAVITY;
        else if (
equal(szType"heal"))
            
iValue HEAL;
        else if (
equal(szType"armor"))
            
iValue ARMOR;
        else if (
equal(szType"money"))
            
iValue SETMONEY;
        else if (
equal(szType"badaim"))
            
iValue BADAIM;
        else if (
equal(szType"gag"))
            
iValue GAG;
        
        if (!(
get_user_flags(id) & g_iAccessLevel[iValue]))
        {
            
client_print(idprint_console"%L"id"NO_ACC_COM");
            return 
PLUGIN_HANDLED;
        }
        new 
szMessage[256], iMax ArraySize(Array:g_aValueArray[iValue]), = (iValue == BADAIM) ? 0;
        if (
read_argc() < 3)
        {
            
client_print(idprint_console"%L"id"AMXSUPER_NOPARM");
            
client_print(idprint_console"%L %s %s <value1> [value2] [value3] [value4] ..."id"USAGE"szCommandszType);
            
format(szMessagecharsmax(szMessage), "%d"ArrayGetCell(Array:g_aValueArray[iValue], k++));
            while (
iMax)
                
format(szMessagecharsmax(szMessage), "%s, %d"szMessageArrayGetCell(Array:g_aValueArray[iValue], k++));
            
client_print(idprint_console"%L: %s"id"AMXSUPER_CURRENT"szTypeszMessage);
            return 
PLUGIN_HANDLED;
        }
        
        if (
iValue == EXTEND)
        {
            
menu_destroy(g_hExtendMenu);
            
            
// Recreating it and building it
            
format(g_szMenuNamecharsmax(g_szMenuName), "%L"LANG_PLAYER"AMXSUPER_MENU4");
            
g_hExtendMenu menu_create(g_szMenuName"extendMenu");
            
            new 
szArg[4], 2;
            while(
k)
            {
                
read_argv(kszArgcharsmax(szArg));
                if(
equal(szArg"")) break;
                
ArrayPushCell(aTempstr_to_num(szArg));
                
k++;
                
format(g_szMenuNamecharsmax(g_szMenuName), "%L"LANG_PLAYER"AMXSUPER_EXTEND"szArg);
                
menu_additem(g_hExtendMenug_szMenuNameszArg);
            }
        }
        else if (
iValue == GRAVITY)
        {
            
menu_destroy(g_hGravityMenu);
            
            
// Recreating it and building it
            
format(g_szMenuNamecharsmax(g_szMenuName), "%L"LANG_PLAYER"AMXSUPER_MENU5");
            
g_hGravityMenu menu_create(g_szMenuName"GravityMenuHandler");
            
            new 
szArg[6], 2;
            while (
k)
            {
                
read_argv(kszArgcharsmax(szArg));
                if (
equal(szArg"")) break;
                
ArrayPushCell(aTempstr_to_num(szArg));
                
k++;
                
menu_additem(g_hGravityMenuszArgszArg);
            }
        }
        else
        {
            if (
iValue == BADAIM)
            {
                
ArrayPushCell(aTemp0);
                
ArrayPushCell(aTemp1);
            }
            new 
szArg[6], 2;
            while(
k)
            {
                
read_argv(kszArgcharsmax(szArg));
                if (
equal(szArg"")) break;
                
ArrayPushCell(aTempstr_to_num(szArg));
                
k++;
            }
        }
        
        
iMax ArraySize(aTemp), 0;
        
format(szMessagecharsmax(szMessage), "%d"ArrayGetCell(aTempk++));
        while(
iMax)
            
format(szMessagecharsmax(szMessage), "%s, %d"szMessageArrayGetCell(aTempk++));
        
client_print(idprint_console"%L: %s"id"AMXSUPER_CURRENT"szTypeszMessage);
        
g_aValueArray[iValue] = aTemp;
    }   
    return 
PLUGIN_HANDLED;
}

BuildArrays()
{
    
g_aValueArray[EXTEND] = ArrayCreate();
    for (new 
516k+=5)
        
ArrayPushCell(Array:g_aValueArray[EXTEND], k);
    for (new 
3061k+=15)
        
ArrayPushCell(Array:g_aValueArray[EXTEND], k);
    
    
g_aValueArray[GRAVITY] = ArrayCreate();
    for (new 
07k++)
        
ArrayPushCell(Array:g_aValueArray[GRAVITY], 200);
    
    
g_aValueArray[HEAL] = ArrayCreate();
    
g_aValueArray[ARMOR] = ArrayCreate();
    
ArrayPushCell(Array:g_aValueArray[HEAL], 10);
    
ArrayPushCell(Array:g_aValueArray[ARMOR], 10);
    for (new 
15k++)
    {
        
ArrayPushCell(Array:g_aValueArray[HEAL], 25);
        
ArrayPushCell(Array:g_aValueArray[ARMOR], 25);
    }
    
ArrayPushCell(Array:g_aValueArray[HEAL], 200);
    
ArrayPushCell(Array:g_aValueArray[ARMOR], 200);
    
    
g_aValueArray[SETMONEY] = ArrayCreate();
    for (new 
50016001k*=2)
        
ArrayPushCell(Array:g_aValueArray[SETMONEY], k);
    
    
g_aValueArray[BADAIM] = ArrayCreate();
    
ArrayPushCell(Array:g_aValueArray[BADAIM], 0);
    
ArrayPushCell(Array:g_aValueArray[BADAIM], 1);
    for (new 
516k+=5)
        
ArrayPushCell(Array:g_aValueArray[BADAIM], k);
    for (new 
3061k+=15)
        
ArrayPushCell(Array:g_aValueArray[BADAIM], k);
    
    
g_aValueArray[GAG] = ArrayCreate();
    
ArrayPushCell(Array:g_aValueArray[GAG], 30);
    
ArrayPushCell(Array:g_aValueArray[GAG], 60);
    
ArrayPushCell(Array:g_aValueArray[GAG], 300);
    for (new 
6001801k+=600)
        
ArrayPushCell(Array:g_aValueArray[GAG], k);
}

BuildMenu()
{
    new 
szValue[20];
    
    
// Build Main Menu
    
for (new iNum 1iNum MAXVALUEiNum++)
    {
        if (
iNum == UNLOCK || iNum == UNBURY || iNum == UNGAG)
            continue;
        
        new 
szKey[17], szNum[3];
        
format(szKeycharsmax(szKey), "AMXSUPER_MENU%d"iNum);
        
format(szNumcharsmax(szNum), "%d"iNum);
        
format(g_szMenuNamecharsmax(g_szMenuName), "%L"LANG_PLAYERszKey);
        if (
g_iAccessLevel[iNum] != -2)
            
menu_additem(g_hMainMenug_szMenuNameszNum_g_hCallback);
    }
    
    
// Build Alltalk Menu
    
format(g_szMenuNamecharsmax(g_szMenuName), "%L"LANG_PLAYER"AMXSUPER_ENABLE");
    
menu_additem(g_hAllTalkMenug_szMenuName"1");
    
format(g_szMenuNamecharsmax(g_szMenuName), "%L"LANG_PLAYER"AMXSUPER_DISABLE");
    
menu_additem(g_hAllTalkMenug_szMenuName"0");
    
    
// Build Extend Menu
    
for (new 06k++)
    {
        
format(szValuecharsmax(szValue), "%d"ArrayGetCell(Array:g_aValueArray[EXTEND], k));
        
format(g_szMenuNamecharsmax(g_szMenuName), "%L"LANG_PLAYER"AMXSUPER_EXTEND"szValue);
        
menu_additem(g_hExtendMenug_szMenuNameszValue);
    }
    
    
// Build Gravity Menu
    
for (new 06k++)
    {
        
format(szValuecharsmax(szValue), "%d"ArrayGetCell(Array:g_aValueArray[GRAVITY], k));
        
menu_additem(g_hGravityMenuszValueszValue);
    }
}

GetMenuPlayers(&iNumiMenu)
{
    new 
iTemp[32], iPlayers[35], k;
    
    switch(
iMenu)
    {
        case 
FIREFLASHDISARMROCKETUBERSLAPDRUGHEALARMORSTACKBURYUNBURYSLAYGODNOCLIPSPEEDUNAMMOBADAIM:
            
get_players(iTempiNum"a");
        
        case 
REVIVE:
            
get_players(iTempiNum"b");
        
        case 
GAG:
            
get_players(iTempiNum"c");
            
        default:
            
get_players(iTempiNum);
    }
    
    for (
0iNumk++) iPlayers[k] = iTemp[k];
    
/*
    if(iMenu == SWAP)
    {
        iPlayers[k] = 34;
        iPlayers[k+1] = 35;
        iNum += 2;
    }
    
    else
    */
    
if(iMenu != SWAP && iMenu != GAG)
    {
        
iPlayers[k] = 33;
        
iPlayers[k+1] = 34;
        
iPlayers[k+2] = 35;
        
iNum += 3;
    }
    
    return 
iPlayers;
}

public 
MenuCallback(idhMenuiItem)
{
    if (
iItem 0)
        return 
ITEM_DISABLED;
    
    new 
szCommand[3], iAccesshCallback;
    
menu_item_getinfo(hMenuiItemiAccessszCommand2__hCallback);
    
    new 
iNum str_to_num(szCommand);
    
    if(
TrieKeyExists(g_tDisabledCmdsg_szCommands[iNum]))
        return 
ITEM_DISABLED;
        
    if (
get_user_flags(id) & g_iAccessLevel[iNum])
        return 
ITEM_ENABLED;
        
    return 
ITEM_DISABLED;
}

public 
MainMenuHandler(idhMenuiItem)
{
    if (
iItem 0)
        return 
PLUGIN_CONTINUE;
    
    new 
szCommand[3];
    new 
iAccesshCallback;
    
menu_item_getinfo(hMenuiItemiAccessszCommand2__hCallback);
    
    new 
iNum str_to_num(szCommand);
        
    
g_iMenuProperties[id] = 0;
    
g_iMenuPosition[id] = 0;
    
    switch(
iNum)
    {
        case 
ALLTALK:
            
menu_display(idg_hAllTalkMenu0);
        case 
LOCKUNLOCK:
            
DisplayLockMenu(id);
        case 
EXTEND:
            
menu_display(idg_hExtendMenu0);
        case 
GRAVITY:
            
menu_display(idg_hGravityMenu0);
        case 
TEAMSWAP:
        {
            
client_cmd(idg_szCommands[TEAMSWAP]);
            return 
PLUGIN_HANDLED;
        }
        case 
GAG:
            
DisplayGagMenu(id0);
        case 
FIREFLASHDISARMROCKETUBERSLAPREVIVEQUITDRUGSWAP:
            
DisplayPlayer1Menu(id0iNum);
        case 
HEALARMORSTACKBURYUNBURYSLAYGODNOCLIPSPEEDUNAMMOSETMONEYBADAIM:
            
DisplayPlayer2Menu(id0iNum);
    }
    
    return 
PLUGIN_CONTINUE;
}

public 
AllTalkMenuHandler(idhMenuiItem)
{       
    if (
iItem == MENU_EXIT)
    {   
        if(
get_pcvar_num(g_pMenuEnabled))
            
menu_display(idg_hMainMenu0);
            
        return 
PLUGIN_CONTINUE;
    }
    if (
iItem 0)
        return 
PLUGIN_CONTINUE;
    
    new 
szCommand[3], iAccesshCallback;
    
menu_item_getinfo(hMenuiItemiAccessszCommand2,_,_hCallback);
    
    
client_cmd(idg_szMenuCommands[ALLTALK], szCommand);
    
    return 
PLUGIN_HANDLED;  
}

public 
LockMenuHandler(idiKey)
{
    new 
szTeam[6];
    switch(
iKey)
    {
        case 
0:
            
format(szTeamcharsmax(szTeam), "CT");
        case 
1:
            
format(szTeamcharsmax(szTeam), "T");
        case 
2:
            
format(szTeamcharsmax(szTeam), "Auto");
        case 
3:
            
format(szTeamcharsmax(szTeam), "Spec");
        case 
4:
        {
            if (
g_iMenuProperties[id] == LOCK)
                
g_iMenuProperties[id] = UNLOCK;
            else
                
g_iMenuProperties[id] = LOCK;
                
            
DisplayLockMenu(id);
            return 
PLUGIN_HANDLED;
        }
        case 
9:
        {
            if (
get_pcvar_num(g_pMenuEnabled))
                
menu_display(idg_hMainMenu0);

            return 
PLUGIN_HANDLED;
        }
        default: return 
PLUGIN_HANDLED;
    }
    
    
client_cmd(idg_szMenuCommands[g_iMenuProperties[id]], szTeam);
    
    
DisplayLockMenu(id);
    
    return 
PLUGIN_HANDLED;
}

DisplayLockMenu(id)
{
    new 
szMenuBody[1000], szLine[100];
    
    
format(szMenuBodycharsmax(szMenuBody), "\y");
    if (
g_iMenuProperties[id] == LOCK)
        
format(szLinecharsmax(szLine), "%L ^n"id"AMXSUPER_LOCK");
    else
    {
        
format(szLinecharsmax(szLine), "%L ^n"id"AMXSUPER_UNLOCK");
        
g_iMenuProperties[id] = UNLOCK;
    }
    
    
add(szMenuBodycharsmax(szMenuBody), szLine);
    
format(szLinecharsmax(szLine), "^n\w^n");
    
add(szMenuBodycharsmax(szMenuBody), szLine);
    
format(szLinecharsmax(szLine), "1. %L ^n"id"AMXSUPER_TEAMCT");
    
add(szMenuBodycharsmax(szMenuBody), szLine);
    
format(szLinecharsmax(szLine), "2. %L ^n"id"AMXSUPER_TEAMT");
    
add(szMenuBodycharsmax(szMenuBody), szLine);
    
format(szLinecharsmax(szLine), "3. %L ^n"id"AMXSUPER_TEAMAUTO");
    
add(szMenuBodycharsmax(szMenuBody), szLine);
    
format(szLinecharsmax(szLine), "4. %L ^n"id"AMXSUPER_TEAMSPEC");
    
add(szMenuBodycharsmax(szMenuBody), szLine);
    if (
g_iMenuProperties[id] == LOCK)
        
format(szLinecharsmax(szLine), "^n5. %L ^n"id"AMXSUPER_LOCK");
    else
        
format(szLinecharsmax(szLine), "^n5. %L ^n"id"AMXSUPER_UNLOCK");
    
add(szMenuBodycharsmax(szMenuBody), szLine);
    
format(szLinecharsmax(szLine), "^n^n0. %L"id"EXIT");
    
add(szMenuBodycharsmax(szMenuBody), szLine);
    new 
iKeys MENU_KEY_0|MENU_KEY_1|MENU_KEY_2|MENU_KEY_3|MENU_KEY_4|MENU_KEY_5;
        
    
show_menu(idiKeysszMenuBody, -1"Lock Menu");
}

public 
ExtendMenuHandler(idhMenuiItem)
{
    if (
iItem == MENU_EXIT && get_pcvar_num(g_pMenuEnabled))
    {
        
menu_display(idg_hMainMenu0);
        return 
PLUGIN_CONTINUE;
    }
    if (
iItem 0)
        return 
PLUGIN_CONTINUE;
    
    new 
szCommand[4], iAccesshCallback;
    
menu_item_getinfo(hMenuiItemiAccessszCommand3,_,_hCallback);
    
    
client_cmd(idg_szMenuCommands[EXTEND], szCommand);
    
    return 
PLUGIN_HANDLED;
}

public 
GravityMenuHandler(idhMenuiItem)
{
    if (
iItem == MENU_EXIT && get_pcvar_num(g_pMenuEnabled))
    {
        
menu_display(idg_hMainMenu0);
        return 
PLUGIN_CONTINUE;
    }
    if (
iItem 0)
        return 
PLUGIN_CONTINUE;
    
    new 
szCommand[5], iAccesshCallback;
    
menu_item_getinfo(hMenuiItemiAccessszCommand4,_,_hCallback);
    
    
client_cmd(idg_szMenuCommands[GRAVITY], szCommand);
    
    return 
PLUGIN_HANDLED;
}

public 
Player1MenuHandler(idiKey)
{
    switch (
iKey)
    {
        case 
8DisplayPlayer1Menu(id, ++g_iMenuPosition[id], g_iMenu[id]);
        case 
9DisplayPlayer1Menu(id, --g_iMenuPosition[id], g_iMenu[id]);
        default:
        {
            new 
iPlayer g_iMenuPlayers[id][g_iMenuPosition[id] * iKey];
            new 
szName[32];
            
            if (
g_iMenu[id] != SWAP)
            {
                switch (
iPlayer)
                {
                    case 
33format(szNamecharsmax(szName), "@ALL");
                    case 
34format(szNamecharsmax(szName), "@T");
                    case 
35format(szNamecharsmax(szName), "@CT");
                    default: 
get_user_name(iPlayerszNamecharsmax(szName));
                }
                
client_cmd(idg_szMenuCommands[g_iMenu[id]], szName);
            }
            else
            {
                
get_user_name(iPlayerszNamecharsmax(szName));
                
                if (
equal(g_szMenuPlayerName[id], ""))
                {
                    
format(g_szMenuPlayerName[id], 31"%s"szName);
                    
g_iMenuPosition[id] = 0;
                    
DisplayPlayer1Menu(idg_iMenuPosition[id], g_iMenu[id]);
                }
                else
                {
                    
client_cmd(idg_szMenuCommands[SWAP], g_szMenuPlayerName[id], szName);
                    
format(g_szMenuPlayerName[id], 31"");
                }
            }
        }
    }
    
    
DisplayPlayer1Menu(idg_iMenuPosition[id], g_iMenu[id]); 
    
    return 
PLUGIN_HANDLED;
}

DisplayPlayer1Menu(idiPosiMenu)
{
    if (
iPos 0)
    {
        if (
get_pcvar_num(g_pMenuEnabled))
            
menu_display(idg_hMainMenu0);
        return;
    }
    
    
g_iMenu[id] = iMenu;
    
g_iMenuPlayers[id] = GetMenuPlayers(g_iMenuPlayersNum[id], iMenu);

    new 
szMenuBody[1024];
    new 
0;
    new 
i;
    new 
szName[32];
    new 
iStart iPos 8;
    
    if (
iStart >= g_iMenuPlayersNum[id])
        
iStart iPos g_iMenuPosition[id] = 0;
    
    new 
szKey[17];
    
format(szKeycharsmax(szKey), "AMXSUPER_MENU%d"iMenu);
    new 
iLen format(szMenuBody1023"\y%L\R%d/%d^n\w^n"idszKeyiPos 1, (g_iMenuPlayersNum[id] / + ((g_iMenuPlayersNum[id] % 8) ? 0)));
    new 
iEnd iStart 8;
    new 
iKeys MENU_KEY_0;

    if (
iEnd g_iMenuPlayersNum[id])
        
iEnd g_iMenuPlayersNum[id];

    for (new 
iStartiEnd; ++a)
    {
        
g_iMenuPlayers[id][a];
        
        if (
g_iMenu[id] != SWAP)
            switch (
i)
            {
                case 
33format(szNamecharsmax(szName), "%L"id"AMXSUPER_ALL");
                case 
34format(szNamecharsmax(szName), "%L"id"AMXSUPER_TEAMT");
                case 
35format(szNamecharsmax(szName), "%L"id"AMXSUPER_TEAMCT");
                default: 
get_user_name(iszName31);
            }
        else
            
get_user_name(iszName31);
        
        if (
33 && != id && access(iADMIN_IMMUNITY))
        {
            ++
b;
            
iLen += format(szMenuBody[iLen], 1023-iLen"\d\r%d. \w%s^n\w"bszName);
        } else {
            
iKeys |= (1<<b);
                
            if (
33 && is_user_admin(i))
                
iLen += format(szMenuBody[iLen], 1023-iLen"\r%d. \w%s \r*^n\w", ++bszName);
            else
                
iLen += format(szMenuBody[iLen], 1023-iLen"\r%d. \w%s^n", ++bszName);
        }
    }

    if (
iEnd != g_iMenuPlayersNum[id])
    {
        
format(szMenuBody[iLen], 1023-iLen"^n\r9. \w%L...^n\r0. \w%L"id"MORE"idiPos "BACK" "EXIT");
        
iKeys |= MENU_KEY_9;
    }
    else
        
format(szMenuBody[iLen], 1023-iLen"^n\r0. \w%L"idiPos "BACK" "EXIT");

    
show_menu(idiKeysszMenuBody, -1"Player1 Menu");
}

public 
Player2MenuHandler(idiKey)
{
    switch (
iKey)
    {
        case 
7:
        {
            switch (
g_iMenu[id])
            {
                case 
HEALARMORSETMONEY: if (++g_iMenuProperties[id] > 5g_iMenuProperties[id] = 0;
                case 
STACKGODNOCLIP: if (++g_iMenuProperties[id] > 2g_iMenuProperties[id] = 0;
                case 
SLAY: if (++g_iMenuProperties[id] > 3g_iMenuProperties[id] = 1;
                case 
SPEEDUNAMMOBURYUNBURY: if (++g_iMenuProperties[id] > 1g_iMenuProperties[id] = 0;
                case 
BADAIM: if (++g_iMenuProperties[id] > 7g_iMenuProperties[id] = 0;
            }
            
DisplayPlayer2Menu(idg_iMenuPosition[id], g_iMenu[id]);
        }
        case 
8DisplayPlayer2Menu(id, ++g_iMenuPosition[id], g_iMenu[id]);
        case 
9DisplayPlayer2Menu(id, --g_iMenuPosition[id], g_iMenu[id]);
        default:
        {
            new 
iPlayer g_iMenuPlayers[id][g_iMenuPosition[id] * iKey];
            new 
szName[32];
            
            switch (
iPlayer)
            {
                case 
33format(szNamecharsmax(szName), "@ALL");
                case 
34format(szNamecharsmax(szName), "@T");
                case 
35format(szNamecharsmax(szName), "@CT");
                default: 
get_user_name(iPlayerszNamecharsmax(szName));
            }
            
            switch (
g_iMenu[id])
            {
                case 
HEALARMORBADAIMSETMONEYclient_cmd(idg_szMenuCommands[g_iMenu[id]], szNameArrayGetCell(Array:g_aValueArray[g_iMenu[id]], g_iMenuProperties[id]));
                case 
STACKSLAYGODNOCLIPSPEEDUNAMMOclient_cmd(idg_szMenuCommands[g_iMenu[id]], szNameg_iMenuProperties[id]);
                case 
BURYUNBURYclient_cmd(idg_szMenuCommands[g_iMenuProperties[id] ? UNBURY BURY], szName);
            }
        }
    }
    
    
DisplayPlayer2Menu(idg_iMenuPosition[id], g_iMenu[id]);
    
    return 
PLUGIN_HANDLED;
}

DisplayPlayer2Menu(idiPosiMenu)
{
    if (
iPos 0)
    {
        if (
get_pcvar_num(g_pMenuEnabled))
            
menu_display(idg_hMainMenu0);
        return;
    }
    
    
g_iMenu[id] = iMenu;
    
g_iMenuPlayers[id] = GetMenuPlayers(g_iMenuPlayersNum[id], iMenu);

    new 
szMenuBody[1024];
    new 
0;
    new 
i;
    new 
szName[32];
    new 
iStart iPos 7;
    
    if (
iStart >= g_iMenuPlayersNum[id])
        
iStart iPos g_iMenuPosition[id] = 0;
    
    new 
szKey[20];
    if (
iMenu == BURY || iMenu == UNBURY)
        
format(szKeycharsmax(szKey), "AMXSUPER_%s", (g_iMenuProperties[id]) ? "UNBURY" "BURY");
    else
        
format(szKeycharsmax(szKey), "AMXSUPER_MENU%d"iMenu);
    new 
iLen format(szMenuBody1023"\y%L\R%d/%d^n\w^n"idszKeyiPos 1, (g_iMenuPlayersNum[id] / + ((g_iMenuPlayersNum[id] % 7) ? 0)));
    new 
iEnd iStart 7;
    new 
iKeys MENU_KEY_0;

    if (
iEnd g_iMenuPlayersNum[id])
        
iEnd g_iMenuPlayersNum[id];

    for (new 
iStartiEnd; ++a)
    {
        
g_iMenuPlayers[id][a];
        
        switch (
i)
        {
            case 
33format(szNamecharsmax(szName), "%L"id"AMXSUPER_ALL");
            case 
34format(szNamecharsmax(szName), "%L"id"AMXSUPER_TEAMT");
            case 
35format(szNamecharsmax(szName), "%L"id"AMXSUPER_TEAMCT");
            default: 
get_user_name(iszName31);
        }
        
        if (
33 && != id && access(iADMIN_IMMUNITY))
        {
            ++
b;
            
iLen += format(szMenuBody[iLen], 1023-iLen"\d\r%d. \w%s^n\w"bszName);
        } else {
            
iKeys |= (1<<b);
                
            if (
33 && is_user_admin(i))
                
iLen += format(szMenuBody[iLen], 1023-iLen"\r%d. \w%s \r*^n\w", ++bszName);
            else
                
iLen += format(szMenuBody[iLen], 1023-iLen"\r%d. \w%s^n", ++bszName);
        }
    }
    
    new 
szOption[20];
    if (
iMenu == HEAL || iMenu == ARMOR || iMenu == BADAIM || iMenu == SETMONEY)
        
format(szOptioncharsmax(szOption), "%d"ArrayGetCell(Array:g_aValueArray[iMenu], g_iMenuProperties[id]));
        
    switch (
iMenu)
    {
        case 
HEALiLen += format(szMenuBody[iLen], 1023-iLen"\r8. \w%L"id"AMXSUPER_HEAL"szOption);
        case 
ARMORiLen += format(szMenuBody[iLen], 1023-iLen"\r8. \w%L"id"AMXSUPER_ARMOR"szOption);
        case 
STACKiLen += format(szMenuBody[iLen], 1023-iLen"\r8. \w%L"id"AMXSUPER_STACK"g_iMenuProperties[id]);
        case 
BURYUNBURYiLen += format(szMenuBody[iLen], 1023-iLen"\r8. \w%L"id, (g_iMenuProperties[id]) ? "AMXSUPER_BURY" "AMXSUPER_UNBURY");
        case 
SLAY:
        {
            if(!
g_iMenuProperties[id])
                
g_iMenuProperties[id] = 1;
                
            
formatex(szKeycharsmax(szKey), "AMXSUPER_SLAY%d"g_iMenuProperties[id]);
            
iLen += format(szMenuBody[iLen], 1023-iLen"\r8. \w%L"idszKey);
        }
        case 
GODNOCLIPSPEEDUNAMMO:
        {
            
format(szKeycharsmax(szKey), "AMXSUPER_GOD%d"g_iMenuProperties[id]);
            
iLen += format(szMenuBody[iLen], 1023-iLen"\r8. \w%L"idszKey);
        }
        case 
BADAIM:
        {
            
format(szKeycharsmax(szKey), "AMXSUPER_%s", (g_iMenuProperties[id] < 2) ? (g_iMenuProperties[id]) ? "GOD0" "GOD1" "MINS");
            if (
g_iMenuProperties[id] < 2)
                
iLen += format(szMenuBody[iLen], 1023-iLen"\r8. \w%L"idszKey);
            else
                
iLen += format(szMenuBody[iLen], 1023-iLen"\r8. \w%L"idszKeyszOption);
        }
        case 
SETMONEYiLen += format(szMenuBody[iLen], 1023-iLen"\r8. \w%L"id"AMXSUPER_SET"szOption);
    }
    
iKeys |= MENU_KEY_8;
        
    if (
iEnd != g_iMenuPlayersNum[id])
    {
        
format(szMenuBody[iLen], 1023-iLen"^n\r9. \w%L...^n\r0. \w%L"id"MORE"idiPos "BACK" "EXIT");
        
iKeys |= MENU_KEY_9;
    }
    else
        
format(szMenuBody[iLen], 1023-iLen"^n\r0. \w%L"idiPos "BACK" "EXIT");
    
    
show_menu(idiKeysszMenuBody, -1"Player2 Menu");
}

public 
GagMenuHandler(idiKey)
{
    switch (
iKey)
    {
        case 
6:
        {
            if (++
g_iMenuProperties[id] > 5g_iMenuProperties[id] = 0;
            
DisplayGagMenu(idg_iMenuPosition[id]);
        }
        case 
7:
        {
            if (++
g_iMenuProperties2[id] > 7g_iMenuProperties2[id] = 0;
            
DisplayGagMenu(idg_iMenuPosition[id]);
        }
        case 
8DisplayGagMenu(id, ++g_iMenuPosition[id]);
        case 
9DisplayGagMenu(id, --g_iMenuPosition[id]);
        default:
        {
            new 
iPlayer g_iMenuPlayers[id][g_iMenuPosition[id] * iKey];
            new 
szName[32];
            
            
// Drekes: Removed @TEAM values.
            
get_user_name(iPlayerszNamecharsmax(szName));
            
/*
            switch (iPlayer)
            {
                case 33: format(szName, charsmax(szName), "@ALL");
                case 34: format(szName, charsmax(szName), "@T");
                case 35: format(szName, charsmax(szName), "@CT");
                default: get_user_name(iPlayer, szName, charsmax(szName));
            }
            */
            
            
if (g_iMenuProperties2[id] == 7)
                
client_cmd(idg_szMenuCommands[UNGAG], szName);
            else
            {
                new 
szFlags[4];
                
                switch (
g_iMenuProperties2[id])
                {
                    case 
0format(szFlagscharsmax(szFlags), "a");
                    case 
1format(szFlagscharsmax(szFlags), "b");
                    case 
2format(szFlagscharsmax(szFlags), "c");
                    case 
3format(szFlagscharsmax(szFlags), "ab");
                    case 
4format(szFlagscharsmax(szFlags), "ac");
                    case 
5format(szFlagscharsmax(szFlags), "bc");
                    case 
6format(szFlagscharsmax(szFlags), "abc");
                }
                
                
client_cmd(idg_szMenuCommands[GAG], szNameszFlagsArrayGetCell(Array:g_aValueArray[g_iMenu[id]], g_iMenuProperties[id]));
            }
        }
    }
    
    
DisplayGagMenu(idg_iMenuPosition[id]);
    
    return 
PLUGIN_HANDLED;
}

DisplayGagMenu(idiPos)
{
    if (
iPos 0)
    {
        if (
get_pcvar_num(g_pMenuEnabled))
            
menu_display(idg_hMainMenu0);
        return;
    }

    
g_iMenuPlayers[id] = GetMenuPlayers(g_iMenuPlayersNum[id], GAG);
    
g_iMenu[id] = GAG;

    new 
szMenuBody[1024];
    new 
0;
    new 
i;
    new 
szName[32];
    new 
iStart iPos 6;
    
    if (
iStart >= g_iMenuPlayersNum[id])
        
iStart iPos g_iMenuPosition[id] = 0;
    
    new 
szKey[20];
    
format(szKeycharsmax(szKey), "AMXSUPER_MENU%d"GAG);
    new 
iLen format(szMenuBody1023"\y%L\R%d/%d^n\w^n"idszKeyiPos 1, (g_iMenuPlayersNum[id] / + ((g_iMenuPlayersNum[id] % 6) ? 0)));
    new 
iEnd iStart 6;
    new 
iKeys MENU_KEY_0|MENU_KEY_7|MENU_KEY_8;

    if (
iEnd g_iMenuPlayersNum[id])
        
iEnd g_iMenuPlayersNum[id];

    for (new 
iStartiEnd; ++a)
    {
        
g_iMenuPlayers[id][a];
        
get_user_name(iszName31);
        
/*
        switch (i)
        {
            case 33: format(szName, charsmax(szName), "%L", id, "AMXSUPER_ALL");
            case 34: format(szName, charsmax(szName), "%L", id, "AMXSUPER_TEAMT");
            case 35: format(szName, charsmax(szName), "%L", id, "AMXSUPER_TEAMCT");
            default: get_user_name(i, szName, 31);
        }
        */
        
        
if (33 && != id && access(iADMIN_IMMUNITY))
        {
            ++
b;
            
iLen += format(szMenuBody[iLen], 1023-iLen"\d\r%d. \w%s^n\w"bszName);
        } else {
            
iKeys |= (1<<b);
                
            if (
33 && is_user_admin(i))
                
iLen += format(szMenuBody[iLen], 1023-iLen"\r%d. \w%s \r*^n\w", ++bszName);
            else
                
iLen += format(szMenuBody[iLen], 1023-iLen"\r%d. \w%s^n", ++bszName);
        }
    }
    
    new 
szOption[20];
    
format(szOptioncharsmax(szOption), "%d"ArrayGetCell(Array:g_aValueArray[g_iMenu[id]], g_iMenuProperties[id]));
    
iLen += format(szMenuBody[iLen], 1023-iLen"7. %L^n"id"AMXSUPER_MINS"szOption);
    
    switch (
g_iMenuProperties2[id])
    {
        case 
0iLen += format(szMenuBody[iLen], 1023-iLen"8. %L^n"id"AMXSUPER_GAGA");
        case 
1iLen += format(szMenuBody[iLen], 1023-iLen"8. %L^n"id"AMXSUPER_GAGB");
        case 
2iLen += format(szMenuBody[iLen], 1023-iLen"8. %L^n"id"AMXSUPER_GAGC");
        case 
3iLen += format(szMenuBody[iLen], 1023-iLen"8. %L & %L^n"id"AMXSUPER_GAGA"id"AMXSUPER_GAGB");
        case 
4iLen += format(szMenuBody[iLen], 1023-iLen"8. %L & %L^n"id"AMXSUPER_GAGA"id"AMXSUPER_GAGC");
        case 
5iLen += format(szMenuBody[iLen], 1023-iLen"8. %L & %L^n"id"AMXSUPER_GAGB"id"AMXSUPER_GAGC");
        case 
6iLen += format(szMenuBody[iLen], 1023-iLen"8. %L & %L & %L^n"id"AMXSUPER_GAGA"id"AMXSUPER_GAGB"id"AMXSUPER_GAGC");
        case 
7iLen += format(szMenuBody[iLen], 1023-iLen"8. %L^n"id"AMXSUPER_UNGAG");
    }
    
    if (
iEnd != g_iMenuPlayersNum[id])
    {
        
format(szMenuBody[iLen], 1023-iLen"^n9. %L...^n0. %L"id"MORE"idiPos "BACK" "EXIT");
        
iKeys |= MENU_KEY_9;
    }
    else
        
format(szMenuBody[iLen], 1023-iLen"^n0. %L"idiPos "BACK" "EXIT");

    
show_menu(idiKeysszMenuBody, -1"Gag Menu");

KleirPlays is offline
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 08-05-2014 , 07:19   Re: [Help] How to remove!
Reply With Quote #6

Again, what are the errors you are getting?
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 08-05-2014 , 07:26   Re: [Help] How to remove!
Reply With Quote #7

Quote:
Originally Posted by YamiKaitou View Post
Again, what are the errors you are getting?
Yes, please tell the errors.

I have tried to compile to code that you have given. However, I don't get any warnings or errors.

?

Last edited by zmd94; 08-05-2014 at 07:27.
zmd94 is offline
Old 08-05-2014, 07:39
KleirPlays
This message has been deleted by KleirPlays.
KleirPlays
Member
Join Date: Jun 2013
Location: Portugal
Old 08-05-2014 , 07:40   Re: [Help] How to remove!
Reply With Quote #8

[IMG]http://s8.************/ey7hwj0ph/Sem_T_tulo.png[/IMG]
KleirPlays is offline
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 08-05-2014 , 07:54   Re: [Help] How to remove!
Reply With Quote #9

Error on your side, your compiler includes are not up-to-date
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 08-05-2014 , 08:00   Re: [Help] How to remove!
Reply With Quote #10

Quote:
Originally Posted by YamiKaitou View Post
Error on your side, your compiler includes are not up-to-date.
I'm agreed.

Please update it with the latest version.
zmd94 is offline
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 18:51.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode