Thread: [Solved] VIP Plugin (help)
View Single Post
Cruze
Veteran Member
Join Date: May 2017
Old 01-24-2022 , 04:38   Re: VIP Plugin (help)
Reply With Quote #6

Quote:
Originally Posted by PC Gamer View Post
Change this:
PHP Code:
            if (StrEqual(item"Votekick")) {
                
ClientCommand(client"sm_votekick");
            }
            else if (
StrEqual(item"Voteban")) {
                
ClientCommand(client"sm_voteban");
            } 
to read this:
PHP Code:
            if (StrEqual(item"Votekick")) {
                
ClientCommand(param1"sm_votekick");
            }
            else if (
StrEqual(item"Voteban")) {
                
ClientCommand(param1"sm_voteban");
            } 
When using menus the client becomes param1
Oh yeah, I didn't check that ._. Thanks for correcting that out
__________________
Taking paid private requests! Contact me
Cruze is offline