Raised This Month: $ Target: $400
 0% 

Why does not this code work?


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
PlutteN
Junior Member
Join Date: Jun 2007
Old 04-15-2009 , 09:53   Why does not this code work?
Reply With Quote #1

Hey!

I wonder why my code dont work... i have changed it from "auto bind menu" but it wont work?
When i generate it makes this error:
/home/groups/amxmodx/tmp3/textGzbPoG.sma(31) : error 037: invalid string (possibly non-terminated string)
/home/groups/amxmodx/tmp3/textGzbPoG.sma(31 -- 33) : error 001: expected token: ",", but found "-identifier-"
/home/groups/amxmodx/tmp3/textGzbPoG.sma(33) : warning 217: loose indentation
/home/groups/amxmodx/tmp3/textGzbPoG.sma(33) : error 017: undefined symbol "thanks"
/home/groups/amxmodx/tmp3/textGzbPoG.sma(33) : fatal error 107: too many error messages on one line




Code:
 #include <amxmodx>

#define autobindMenuKeys (1<<0)|(1<<1)|(1<<2)
#define PLUGIN "Autobinds"
#define VERSION "1.2"
#define AUTHOR "CLLlAgOB"
#define MAX_STRING_LEN 256
#define MAX_LINES 64

new help_dir,bind_ver
new key_set[MAX_LINES][MAX_STRING_LEN]
new key_command[MAX_LINES][MAX_STRING_LEN]

public plugin_init(){
    register_plugin(PLUGIN, VERSION, AUTHOR)
    register_menucmd(register_menuid("Auto Bind Menu"), autobindMenuKeys, "autobindmenu")
    help_dir = register_cvar("auto_helpdir","http://ya.ru")
    bind_ver = register_cvar("auto_ver","v1.0")
    load_settings("addons/amxmodx/configs/keys.ini")
    register_event("TeamInfo", "task_premenu", "b") 
}

public task_premenu(id)
    set_task(10.0,"task_autobindmenu",id)

public task_autobindmenu(id) {
    new crate[33],ver[33]  
    get_user_info(id,"autobind",crate,32)
    get_cvar_string("auto_ver",ver,31)
    if(!equali(crate, ver)){
        show_menu(id, autobindMenuKeys, "\rAuto Bind menu^n\w^n1. bind 'v' '+setlaser'  ^n2. Help (About this binding)  ^n3. No 

thanks i can bindy +setlaser myself", -1, "");
        return PLUGIN_HANDLED;
    }
    return PLUGIN_HANDLED;
}


load_settings(szFilename[]) {
    if (!file_exists(szFilename))
        return 0
    new num = 0
    new szText[MAX_STRING_LEN], setbuttn[MAX_STRING_LEN], setcommand[MAX_STRING_LEN]
    new a, pos = 0
    while (num < MAX_LINES && read_file(szFilename, pos++, szText, sizeof(szText), a)) {         
        if (szText[0] == ';' || szText[0] == '#')
            continue
        if (parse(szText,setbuttn,sizeof(setbuttn),setcommand,sizeof(setcommand)) < 2)
            continue

        copy(key_set[num], MAX_STRING_LEN - 1, setbuttn) 
        copy(key_command[num], MAX_STRING_LEN - 1, setcommand)
        num++
    }
    return 1
}
public autobindmenu(id, key) {
    switch (key) {
        case 0: func_autobind(id);
        case 1: {
            autobind_help(id);
            task_autobindmenu(id);
            }
        case 2: return PLUGIN_HANDLED;
    }
    return PLUGIN_HANDLED;
}
///---------------[Help]
public autobind_help(id)
{
    new dir[129]
    get_pcvar_string(help_dir,dir,128)
    show_motd(id, dir,"Help keys")
}

//---------------[AUTO BIND SYSTEM]---------------

public func_autobind(id)
{
    for (new i = 0; i <= (MAX_LINES-1); i++) {
        if(key_set[i][0]){
            client_cmd(id,"bind  %s ^"%s^"",key_set[i],key_command[i])
            }
    }
    new ver[129]
    get_pcvar_string(bind_ver,ver,128)
    client_cmd(id," setinfo autobind %s",ver)
    console_print(id,"Key Defaults are bound. ENJOY!")
    return PLUGIN_HANDLED
}
Im not so good at this so dont only explain for me change and explain

Thanks,
PlutteN is offline
 



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 02:17.


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