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

Little Edit


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
SniperSK
Junior Member
Join Date: Aug 2018
Location: Slovakia
Old 11-14-2018 , 18:59   Little Edit
Reply With Quote #1

Hello, I want someone to edit this :

1.) Play sound after join to team
2.) Sound to hear everyone.
3.) And if its possible only for VIP?
Can someone help me?

Spoiler
Thanks

PS : Sorry for my poor English
SniperSK is offline
instinctpt1
Senior Member
Join Date: Dec 2016
Location: Chandigarh, India
Old 11-14-2018 , 21:47   Re: Little Edit
Reply With Quote #2

PHP Code:
#include <amxmodx>
#define VIP_FLAG ADMIN_RESERVATION

new const mg_sound[][] = 
{
    
"sound/misc/member_join1.mp3",
    
"sound/misc/member_join2.mp3",
    
"sound/misc/member_join3.mp3",
    
"sound/misc/member_join4.mp3",
    
"sound/misc/member_join5.mp3"
}
public 
plugin_init() register_clcmd("jointeam""playsound")

public 
plugin_precache() for(new i=0sizeof(mg_sound); i++) precache_generic(mg_sound[i])

public 
playsound(id) {
    if(
get_user_flags(id) & VIP_FLAG) {
        new 
szName[32]
        
get_user_name(idszNamecharsmax(szName))
        
client_cmd(0"mp3 play %s"mg_sound[random_num(0sizeof(mg_sound)-1)]) 
        
client_print_color(00"^3VIP ^1[^4 %s ^1] has joined the ^3server!"szName
    }


Last edited by instinctpt1; 11-15-2018 at 12:20. Reason: updated-2
instinctpt1 is offline
SniperSK
Junior Member
Join Date: Aug 2018
Location: Slovakia
Old 11-15-2018 , 11:49   Re: Little Edit
Reply With Quote #3

Hey, if I want it compile that show me some errors.

Screen : Screen

Please fix it bro
SniperSK is offline
instinctpt1
Senior Member
Join Date: Dec 2016
Location: Chandigarh, India
Old 11-15-2018 , 11:52   Re: Little Edit
Reply With Quote #4

I am sorry just remember to dont add comma (, ) at last file name !!
instinctpt1 is offline
SniperSK
Junior Member
Join Date: Aug 2018
Location: Slovakia
Old 11-15-2018 , 11:57   Re: Little Edit
Reply With Quote #5

Hmm, Im super lama in AMXX, i dont understand it..Can you add here fixed code of sma?

Edit : Fixed

Edit2 : Can you add text : VIP player has joined to server? Please bro

Last edited by SniperSK; 11-15-2018 at 12:06.
SniperSK is offline
instinctpt1
Senior Member
Join Date: Dec 2016
Location: Chandigarh, India
Old 11-15-2018 , 12:21   Re: Little Edit
Reply With Quote #6

Updated !
instinctpt1 is offline
SniperSK
Junior Member
Join Date: Aug 2018
Location: Slovakia
Old 11-15-2018 , 12:45   Re: Little Edit
Reply With Quote #7

Thanks so much

Edit/ : 1error - undefined symbol "client_print_color"

Last edited by SniperSK; 11-15-2018 at 12:47. Reason: Errors
SniperSK is offline
Nutu_
AlliedModders Donor
Join Date: Mar 2016
Location: Germany
Old 11-15-2018 , 13:05   Re: Little Edit
Reply With Quote #8

Quote:
Originally Posted by SniperSK View Post
Thanks so much

Edit/ : 1error - undefined symbol "client_print_color"
You Are using 1.8.2 . So the Solutions to this are either change client_print_color or use 1.8.3
__________________
a simple act of caring creates an endless ripple.

Last edited by Nutu_; 11-15-2018 at 13:06.
Nutu_ is offline
SniperSK
Junior Member
Join Date: Aug 2018
Location: Slovakia
Old 11-15-2018 , 13:25   Re: Little Edit
Reply With Quote #9

Is there a other way to fix?
SniperSK is offline
instinctpt1
Senior Member
Join Date: Dec 2016
Location: Chandigarh, India
Old 11-15-2018 , 14:04   Re: Little Edit
Reply With Quote #10

There is .. use this
PHP Code:
#include <amxmodx>
#define VIP_FLAG ADMIN_RESERVATION

new const mg_sound[][] = 
{
    
"sound/misc/member_join1.mp3",
    
"sound/misc/member_join2.mp3",
    
"sound/misc/member_join3.mp3",
    
"sound/misc/member_join4.mp3",
    
"sound/misc/member_join5.mp3"
}
public 
plugin_init() register_clcmd("jointeam""playsound")

public 
plugin_precache() for(new i=0sizeof(mg_sound); i++) precache_generic(mg_sound[i])

public 
playsound(id) {
    if(
get_user_flags(id) & VIP_FLAG) {
        new 
szName[32]
        
get_user_name(idszNamecharsmax(szName))
        
client_cmd(0"mp3 play %s"mg_sound[random_num(0sizeof(mg_sound)-1)]) 
        
client_print(03"VIP [ %s ] has joined the server!"szName
    }

instinctpt1 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 02:22.


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