Raised This Month: $ Target: $400
 0% 

Admin welcome message(with sound)


Post New Thread Reply   
 
Thread Tools Display Modes
akash_guptacosmos
Senior Member
Join Date: May 2013
Location: India,Kolkata
Old 08-12-2013 , 03:00   Re: Admin welcome message(with sound)
Reply With Quote #11

Quote:
Originally Posted by wickedd View Post
nup its for all players!
akash_guptacosmos is offline
akash_guptacosmos
Senior Member
Join Date: May 2013
Location: India,Kolkata
Old 08-12-2013 , 03:02   Re: Admin welcome message(with sound)
Reply With Quote #12

Quote:
Originally Posted by ConnorMcLeod View Post
Voilą.
and don't use that ugly color chat stock.
I did'nt understand your color chat so i cant use it :\
akash_guptacosmos is offline
Jhob94
AMX Mod X Donor
Join Date: Jul 2012
Old 08-12-2013 , 06:23   Re: Admin welcome message(with sound)
Reply With Quote #13

No cares since your plugin is bad coded.

PHP Code:
#include <amxmodx> 

#define PLUGIN "admin welcome message" 
#define VERSION "1.0" 
#define AUTHOR "c0Smos" 

// Where is plugin init? lol

public client_putinserver(id

    
set_task(1.0"Welcome_Message"id);  // Why you use task?
    //Welcome_Message(id)


public 
plugin_precache()
{
    
precache_sound("misc/adminsOnline.wav"// lol you think something hardcoded like this can get approved? :3
}


public 
Welcome_Message(id

    new 
szName[32]; 
    
get_user_name(idszNamesizeof(szName)); // Why you get user name of all players?
    
if(get_user_flags(id) & ADMIN_RESERVATION
    { 
        
client_printc(0"!g[Special Player] !g[%s] !tHas Just connected. Hackers be aware!"szName
        
client_cmd(0,"spk misc/adminsOnline")
    } 
    else if(
get_user_flags(id) & ADMIN_KICK
    { 
        
client_printc(0"!g[Special Player] !g[%s] !tHas Just connected. Hackers beaware!"szName
        
client_cmd(0,"spk misc/adminsOnline")
    } 
    
// Wtf did i just read? Why you check twice admins?
    // And if you dont change color at middle why you use twice !g ?



// Colour Chat  
// You could use better one but i will not search it for you
stock client_printc(const id, const input[], any:...) 

    new 
count 1players[32]; 
    static 
msg[191]; 
    
vformat(msg190input3); 
    
    
replace_all(msg190"!g""^x04"); // Green Color 
    
replace_all(msg190"!n""^x01"); // Default Color 
    
replace_all(msg190"!t""^x03"); // Team Color 
    
    
if (idplayers[0] = id; else get_players(playerscount"ch"); 
    { 
        for (new 
0counti++) 
        { 
            if (
is_user_connected(players[i])) 
            { 
                
message_begin(MSG_ONE_UNRELIABLEget_user_msgid("SayText"), _players[i]); 
                
write_byte(players[i]); 
                
write_string(msg); 
                
message_end(); 
            }     
        } 
    } 



PHP Code:
#include <amxmodx> 

#define PLUGIN "admin welcome message" 
#define VERSION "1.0" 
#define AUTHOR "c0Smos" 

#define ADMIN_MESSAGE ADMIN_KICK

new pcvar_sound
new admin_sound[151]

public 
plugin_init()
{
    
register_plugin(PLUGINVERSIONAUTHOR)
    
pcvar_sound register_cvar("welcomemsg_sound""misc/adminsOnline.wav")
}

public 
client_putinserver(id
    
Welcome_Message(id)

public 
plugin_precache()
{
    
get_pcvar_string(pcvar_soundadmin_sound150)
    
precache_sound(admin_sound)
}


public 
Welcome_Message(id
{
    if(
get_user_flags(id) & ADMIN_MESSAGE
    {
        new 
szName[32]
        
get_user_name(idszNamesizeof(szName))
        
        
client_printc(0"!g[Special Player] [%s] !tHas Just connected. Hackers be aware!"szName
        
get_pcvar_string(pcvar_soundadmin_sound150)
        
client_cmd(0,"spk %s"admin_sound)
    }



// Colour Chat  
stock client_printc(const id, const input[], any:...) 

    new 
count 1players[32]; 
    static 
msg[191]; 
    
vformat(msg190input3); 
    
    
replace_all(msg190"!g""^x04"); // Green Color 
    
replace_all(msg190"!n""^x01"); // Default Color 
    
replace_all(msg190"!t""^x03"); // Team Color 
    
    
if (idplayers[0] = id; else get_players(playerscount"ch"); 
    { 
        for (new 
0counti++) 
        { 
            if (
is_user_connected(players[i])) 
            { 
                
message_begin(MSG_ONE_UNRELIABLEget_user_msgid("SayText"), _players[i]); 
                
write_byte(players[i]); 
                
write_string(msg); 
                
message_end(); 
            }     
        } 
    } 

Anyway, you need better chat. Or you can use normal print_chat or hud messages
__________________
Jhob94 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 00:04.


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