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

[CS:GO] VIP System


Post New Thread Reply   
 
Thread Tools Display Modes
BraveFox
AlliedModders Donor
Join Date: May 2015
Location: Israel
Old 09-17-2020 , 06:39   Re: [CS:GO] VIP System
Reply With Quote #101

Quote:
Originally Posted by yuv41 View Post
Any chances to beta test your unreleased version?
would love to help find bugs or any other stuff
yuv#4100 on discord if you wanna hmu
https://github.com/NoyWasTaken/CSGO_VIP
Enjoy.
__________________
Contact Me:
Steam: NoyB
Discord: Noy#9999
Taking Private Requests
BraveFox is offline
yuv41
Member
Join Date: Jan 2020
Old 09-17-2020 , 11:28   Re: [CS:GO] VIP System
Reply With Quote #102

Quote:
Originally Posted by BraveFox View Post
Is it possible to add the activation keys like in here?
Quote:
Originally Posted by lemonpaka View Post
This plugin is amazing. but I found some small problems and I tried to fix it by myself.
Here is my modified version( mixed some codes from reservedslots.sp), it looks working pretty well in my own servers.

New Feature:
① player can get their VIP via Cdkey now. (you need to add cdkey manually to your database or just make a generator)
② Connect message and Disconnect message can be disabled now.

New Command:
sm_getvip - Get VIP via cdkey

New Cvars:
sm_vip_message - Enable the VIP join/leave Message? 0 = Disable, 1 = Enable(default: 0)
sm_vip_slots - Number of Vip player slots(set 0 vip can join via console if sm_slots_enable 1), if VIP slots feature disabled ,whatever you input will be 0(default: 0)
sm_slots_enable - Enable the VIP slots feature? 0 = Disable, 1 = Enable(default: 1)

Fixed bugs?:
① If someone's VIP is expired, he can't get VIP via cdkey or be re-add VIP by admin.
② If someone set his skin back to default, next time he join into server will crash the server.
③ When VIP join into server will kick a player who is not VIP and played longest time now.
yuv41 is offline
Valduga007
Junior Member
Join Date: Aug 2020
Old 09-29-2020 , 23:42   Re: [CS:GO] VIP System
Reply With Quote #103

How to integrate this plugin with zephyrus store?
Valduga007 is offline
CoolFrans
Junior Member
Join Date: Sep 2020
Old 09-30-2020 , 10:43   Re: [CS:GO] VIP System
Reply With Quote #104

Cannot compile your latest release of the VIP plugin.
I get many errors on this part.
PHP Code:
enum struct Player
{
    
char auth[32];
    
char name[MAX_NAME_LENGTH];
    
    
int expiration;
    
    
void reset()
    {
        
this.auth[0] = 0;
        
this.name[0] = 0;
        
        
this.expiration 0;
    }
    
    
bool isVip()
    {
        return 
this.expiration GetTime() > 0;
    }

Attached Thumbnails
Click image for larger version

Name:	Screenshot 2020-09-30 164249.png
Views:	133
Size:	22.1 KB
ID:	184013  
CoolFrans is offline
BraveFox
AlliedModders Donor
Join Date: May 2015
Location: Israel
Old 10-05-2020 , 04:23   Re: [CS:GO] VIP System
Reply With Quote #105

Quote:
Originally Posted by CoolFrans View Post
Cannot compile your latest release of the VIP plugin.
I get many errors on this part.
PHP Code:
enum struct Player
{
    
char auth[32];
    
char name[MAX_NAME_LENGTH];
    
    
int expiration;
    
    
void reset()
    {
        
this.auth[0] = 0;
        
this.name[0] = 0;
        
        
this.expiration 0;
    }
    
    
bool isVip()
    {
        return 
this.expiration GetTime() > 0;
    }

You need to compile it with sourcemod 1.10 otherwise it won't work.
__________________
Contact Me:
Steam: NoyB
Discord: Noy#9999
Taking Private Requests
BraveFox is offline
BraveFox
AlliedModders Donor
Join Date: May 2015
Location: Israel
Old 10-05-2020 , 04:24   Re: [CS:GO] VIP System
Reply With Quote #106

Quote:
Originally Posted by Valduga007 View Post
How to integrate this plugin with zephyrus store?
You have natives in this mod and in zeph's mod, it's your choice what to do with it.
__________________
Contact Me:
Steam: NoyB
Discord: Noy#9999
Taking Private Requests
BraveFox is offline
BraveFox
AlliedModders Donor
Join Date: May 2015
Location: Israel
Old 10-05-2020 , 04:25   Re: [CS:GO] VIP System
Reply With Quote #107

Quote:
Originally Posted by yuv41 View Post
Is it possible to add the activation keys like in here?
Currently I don't have time for it but if anyone wants to do feel free.
__________________
Contact Me:
Steam: NoyB
Discord: Noy#9999
Taking Private Requests
BraveFox is offline
CoolFrans
Junior Member
Join Date: Sep 2020
Old 10-13-2020 , 09:15   Re: [CS:GO] VIP System
Reply With Quote #108

Quote:
Originally Posted by BraveFox View Post
You need to compile it with sourcemod 1.10 otherwise it won't work.
Thank you for replying to me I was able to compile it.
Seemed like the database had to be done like and not in lower case(vip):
PHP Code:
"VIP"
    
{
        
"driver"              "sqlite"
        "host"                "localhost"
        "database"            "vipsystem"
        "user"                "userhere"
        "pass"                "passhere"
        
//"timeout"            "0"
        //"port"            "0"
    

Errors i found are when using sm_vip and you try to add a VIP it does not get the duration you type in chat as well as using sm_addvip keeps saying "Invalid steamid entered, please try again." I used my steamid (STEAM_1:1:122281197) and tried it in quotes which also did not work.

Last edited by CoolFrans; 10-13-2020 at 09:21. Reason: added steamid
CoolFrans is offline
Primestar
Junior Member
Join Date: Apr 2010
Old 01-22-2021 , 10:53   Re: [CS:GO] VIP System
Reply With Quote #109

Hi, I am testing BraveFox VIP plugin the newest he has on Github, last update was on 4-5 month ago. And I get it working ingame. I have a menu there, and so on as admin. But When I choose a player to add VIP the duration day its on 0 days. And when I press Duration button and trying to incress days, I get this message in chat "[VIP] Write the amount of days you want or -1 to abort." And when iam writing in console sm_addvip SteamID Number of days I get this message in console after " [VIP] Usage: sm_addvip <steamid> <days>" even if I am doing right. Is there a fix for that or what can I do

Last edited by Primestar; 01-22-2021 at 12:19.
Primestar is offline
limitlesspluto
Member
Join Date: Aug 2020
Old 03-26-2021 , 10:21   Re: [CS:GO] VIP System
Reply With Quote #110

Quote:
Originally Posted by CoolFrans View Post
Thank you for replying to me I was able to compile it.
Seemed like the database had to be done like and not in lower case(vip):
PHP Code:
"VIP"
    
{
        
"driver"              "sqlite"
        "host"                "localhost"
        "database"            "vipsystem"
        "user"                "userhere"
        "pass"                "passhere"
        
//"timeout"            "0"
        //"port"            "0"
    

Errors i found are when using sm_vip and you try to add a VIP it does not get the duration you type in chat as well as using sm_addvip keeps saying "Invalid steamid entered, please try again." I used my steamid (STEAM_1:1:122281197) and tried it in quotes which also did not work.
Hi, i got this same error, can someone help me with this?
__________________
Contact me on Steam: http://steamcommunity.com/id/wavypzuto
My community servers (PUG & Retake): https://wavycsgo.com
limitlesspluto is offline
Reply


Thread Tools
Display Modes

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 18:10.


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