Raised This Month: $ Target: $400
 0% 

Bind menu laser


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
Author Message
cagnois
Senior Member
Join Date: Nov 2010
Old 02-04-2012 , 06:34   Bind menu laser
#1

Bonjour,

Sur un server j'ai vu un menu pour binder sa touche laser mines
http://www.hostingpics.net/viewer.ph...8Sanstitre.png

J'ai trouvé ce plugin :
PHP Code:
#include <amxmodx>
#include <amxmisc>
#include <hamsandwich>

#define PLUGIN    "New Plugin"
#define AUTHOR    "thony"
#define VERSION    "1.0"

#define MAXLETTERS 26

new alphabet[MAXLETTERS][] = { "a","b","c","d","e","f","g","h","i","j","k","l","m",
"n","o","p","q","r","s","t","u","v","w","x","y","z" }
new 
boolShow

public plugin_init()
{
    
register_plugin(PLUGINVERSIONAUTHOR)
    
    
RegisterHam(Ham_Spawn"player""hook_playerspawn")
}
public 
hook_bindlaser(id)
{
    if(
Show)
        return 
PLUGIN_HANDLED;
    
    
Show true;
    
    new 
menu menu_create("LaserMine Bind""MenuHandler")
    
    for(new 
iMAXLETTERSi++)
        
menu_additem(menualphabet[i], alphabet[i], 0)
    
    
menu_setprop(menu MPROP_EXIT MEXIT_ALL);
    
menu_display(id menu 0);
    
    return 
PLUGIN_HANDLED;
}
public 
MenuHandler(idmenuitem)
{
    if(
item == MENU_EXIT)        
        
menu_destroy(menu);
    
    else 
    {
        new 
cmd[2], szChoice[2];
        new 
accesscallback;
        
menu_item_getinfo(menuitemaccesscmdcharsmax(cmd), szChoicecharsmax(szChoice), callback);
        
        
client_cmd(id"bind %s +dellaser"szChoice)
    }

Mais le menu ne s'ouvre pas

Le plugin laser http://forums.alliedmods.net/showthr...ighlight=laser

Merci
__________________
.SFF|:. COD Modern Warfare 2 [killstreak/Skins/Shop/200 levels] IP : 77.111.193.229:27015
cagnois 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 04:17.


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