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

Clan menu /clan HELP (images)


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
SANTO37
Member
Join Date: Aug 2008
Old 09-26-2015 , 07:10   Clan menu /clan HELP (images)
Reply With Quote #1

Hello,Bad English sorry...
I want to do my ;
CS 1.6 "say /clan" I wrote, Clan menu will open;

then to open the menu.



clan.ini
HTML Code:
"clan Name" "motd"
"EndlessDark Clan" "/addons/amxmodx/configs/clan1.txt"
"Supermans Clan" "/addons/amxmodx/configs/clan2.txt"
"IronMans Clan" "/addons/amxmodx/configs/clan2.txt"

clan1.txt
HTML Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/1999/REC-html401-19991224/loose.dtd">
<html>
<head>
<title>Aksiyon Sunucu</title>
<style type="text/css">
pre 	{
		font-family:Verdana,Tahoma;
		color:#FFB000;
    	}
body	{
		background:#000000;
		margin-left:8px;
		margin-top:0px;
		}
a	{
    	text-decoration:    underline;
	}
a:link  {
    color:  #FFFFFF;
    }
a:visited   {
    color:  #FFFFFF;
    }
a:active    {
    color:  #FFFFFF;
    }
a:hover {
    color:  #FFFFFF;
    text-decoration:    underline;
    }
</style>
</head>
<body scroll="no">
<br>
<font color="orange" size="5">EndlessDark Clan</font>
<br><br>
<font color="orange" size="4">Clan Players</font><br>
<font color="orange" size="2">1- Edt # SANTO37</font><br>
<font color="orange" size="2">2- Edt # Gluke</font><br>
<font color="orange" size="2">3- Edt # MalZefh</font><br><br>

<font color="orange" size="4">Clan Rules</font><br>
<font color="orange" size="2">1- Rule...</font><br>
<font color="orange" size="2">2- Rule...</font><br>
<font color="orange" size="2">3- Rule...</font><br><br>
<font color="red" size="3">Contact:</font>  <font color="white" size="3">[email protected]</font><br>
<font color="red" size="3">Web:</font>  <font color="white" size="3">www.clnedt.com</font><br>
</body>
</html>


as follows







How can I make it happen...HELP PLEASE...
Attached Images
File Type: jpg clan.jpg (50.6 KB, 362 views)
File Type: jpg motd.JPG (84.0 KB, 295 views)
SANTO37 is offline
SANTO37
Member
Join Date: Aug 2008
Old 09-26-2015 , 15:38   Re: Clan menu /clan HELP (images)
Reply With Quote #2

An idea ? Please...
SANTO37 is offline
Mordekay
Squirrel of Fortune
Join Date: Apr 2006
Location: Germany
Old 09-26-2015 , 15:45   Re: Clan menu /clan HELP (images)
Reply With Quote #3

Yes, here
__________________

Mordekay is offline
Hartmann
Senior Member
Join Date: Nov 2014
Old 09-26-2015 , 16:35   Re: Clan menu /clan HELP (images)
Reply With Quote #4

???
PHP Code:
#include <amxmodx>

new g_FileLocation[]= "/addons/amxmodx/configs/clan1.txt";
new 
g_FileLocation2[]= "/addons/amxmodx/configs/clan2.txt";
new 
g_FileLocation3[]= "/addons/amxmodx/configs/clan2.txt";

public 
plugin_init() {
     
register_clcmd("say /clan""clan");
}
public 
clan(usr

    new 
menu menu_create"\yClan Menu!:""menu_handler" ); 
    
menu_additemmenu"EndlessDark Clan"""); 
    
menu_additemmenu"Supermans Clan"""); 
    
menu_additemmenu"IronMans Clan"""0); 

    
menu_setpropmenuMPROP_EXITMEXIT_ALL ); 
    
    
menu_display(usrmenu); 
    


public 
menu_handlerusrmenuitem 

    switch( 
item 
    { 
        case 
0
        { 
             
show_motd(usrg_FileLocation"EndlessDark Clan"); 
        } 
        case 
1
        { 
             
show_motd(usrg_FileLocation2"Supermans Clan"); 
        } 
        case 
2
        { 
             
show_motd(usrg_FileLocation3"IronMans Clan");
        } 
        case 
MENU_EXIT
        { 
            
client_printusrprint_chat"You exited the menu..." ); 
        } 
    } 
    
menu_destroymenu ); 
    return 
PLUGIN_HANDLED

__________________

RETAKES v1.0
github.com/alghtryer/retakes

Contact : [email protected]

BTC Donate: 1QAh1NLmeHy81LF9r8PaeGjYqHL2BBcJTx

Hartmann is offline
SANTO37
Member
Join Date: Aug 2008
Old 09-26-2015 , 18:18   Re: Clan menu /clan HELP (images)
Reply With Quote #5

thank you Hartmann
but;
I want the use clan.ini
When should you might need to change names // Clan Names

clan.ini // example file
HTML Code:
"clan Name" "motd" 
"EndlessDark Clan" "/addons/amxmodx/configs/clan1.txt"
"Supermans Clan" "/addons/amxmodx/configs/clan2.txt"
"IronMans Clan" "/addons/amxmodx/configs/clan2.txt"
HTML Code:
public clan(usr)  
{  
    new menu = menu_create( "\yClan Menu!:", "menu_handler" );  
    menu_additem( menu, "It must be changed", "", 0 );  
    menu_additem( menu, "It must be changed", "", 0 );  
    menu_additem( menu, "It must be changed", "", 0);  

    menu_setprop( menu, MPROP_EXIT, MEXIT_ALL );  
     
    menu_display(usr, menu, 0 );  
     
}  
You can achieve it.Please...

Last edited by SANTO37; 09-26-2015 at 18:23.
SANTO37 is offline
Mordekay
Squirrel of Fortune
Join Date: Apr 2006
Location: Germany
Old 09-27-2015 , 02:27   Re: Clan menu /clan HELP (images)
Reply With Quote #6

If soemone points you to the rules it is because you broke one.
PMing me you don't understand shows me that you still did not read them.

So: read them!
__________________

Mordekay is offline
SANTO37
Member
Join Date: Aug 2008
Old 09-27-2015 , 05:51   Re: Clan menu /clan HELP (images)
Reply With Quote #7

https://forums.alliedmods.net/showthread.php?t=272254 How ?




is it correct ?
SANTO37 is offline
SANTO37
Member
Join Date: Aug 2008
Old 09-29-2015 , 14:50   Re: Clan menu /clan HELP (images)
Reply With Quote #8

Help me ?
SANTO37 is offline
Mordekay
Squirrel of Fortune
Join Date: Apr 2006
Location: Germany
Old 09-29-2015 , 15:15   Re: Clan menu /clan HELP (images)
Reply With Quote #9

Bumping is not allowed, so stop that.
__________________

Mordekay is offline
Reply



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 12:58.


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