AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Unapproved/Old Plugins (https://forums.alliedmods.net/forumdisplay.php?f=27)
-   -   [CS1.6] Admin/Player Rules See In Motd [PLUGIN] (https://forums.alliedmods.net/showthread.php?t=285332)

Amine Belokda 07-18-2016 01:05

[CS1.6] Admin/Player Rules See In Motd [PLUGIN]
 
Hi Guys You Want See Admin Rules Or Player Rules In oke :D

I Creat The Script To See Rules !!

Commands:
Code:

say /rules ( to see player rules )
say /admrules ( to see admin rules )

Admin Acces
PHP Code:

ADMIN_ACCES ADMIN_KCIK 

Script
PHP Code:

#include <amxmodx>

#define PLUGIN "Admin Rules"
#define VERSION "1.0"
#define AUTHOR "KaLo"

#define ADMIN_ACCES ADMIN_KICK

public plugin_init() {
    
register_plugin("admin / player rules""1.0""KaLO")
    
     
    
register_clcmd("say /admrules""Admin_RuleS");
    
register_clcmd("say /rules""Player_RuleS");
}

public 
Player_RuleS(id)
{
    
show_motd(id,"player_rules.txt""Player Rules")
}

public 
Admin_Rules(id){
    if( 
get_user_flags(id) && ADMIN_ACCES )
    {
    
show_motd(id,"admin_rules.txt""Admin Rules")
}


:)

HamletEagle 07-18-2016 04:16

Re: [CS1.6] Admin/Player Rules See In Motd [PLUGIN]
 
Please stop posting useless plugins.

Amine Belokda 07-18-2016 14:33

Re: [CS1.6] Admin/Player Rules See In Motd [PLUGIN]
 
Quote:

Originally Posted by HamletEagle (Post 2437394)
Please stop posting useless plugins.

ok

simanovich 08-06-2016 06:22

Re: [CS1.6] Admin/Player Rules See In Motd [PLUGIN]
 
Quote:

Originally Posted by HamletEagle (Post 2437394)
Please stop posting useless plugins.

Can't some one ban him?

Amine Belokda 08-12-2016 07:51

Re: [CS1.6] Admin/Player Rules See In Motd [PLUGIN]
 
ok -_-

Amine Belokda 11-09-2016 07:19

Re: [CS1.6] Admin/Player Rules See In Motd [PLUGIN]
 
To Add Using webste url
PHP Code:

#include <amxmodx> 

#define PLUGIN "Admin Rules" 
#define VERSION "1.0" 
#define AUTHOR "KaLo" 

#define ADMIN_ACCES ADMIN_KICK 

public plugin_init() { 
    
register_plugin("admin / player rules""1.0""KaLO"
     
      
    
register_clcmd("say /admrules""Admin_RuleS"); 
    
register_clcmd("say /rules""Player_RuleS"); 


public 
Player_RuleS(id

    
show_motd(id,"player_rules.txt""Player Rules"


public 
Admin_Rules(id){ 
    if( 
get_user_flags(id) && ADMIN_ACCES 
    { 
    
show_motd(id,"admin_rules.txt""Admin Rules"// add your url :D 





All times are GMT -4. The time now is 09:37.

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