Raised This Month: $ Target: $400
 0% 

Vip free from 23:00 till 11:007


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Vinjak
New Member
Join Date: Jan 2017
Old 01-22-2017 , 05:25   Vip free from 23:00 till 11:007
Reply With Quote #1

Hello, I need help with VIP plugin.
Im using this plugin.
I want vip to be free from 23:00 till 11:00.
this vip is on"bit" flags.
Can someone make me plugin that give free vip or can someone teach me?
-Thanks
Vinjak is offline
Michael Shoe Maker
Senior Member
Join Date: Apr 2016
Old 01-22-2017 , 08:27   Re: Vip free from 23:00 till 11:007
Reply With Quote #2

That plugin is for Amx mod. This is Sourcemod scripting.
Michael Shoe Maker is offline
MaXs
Member
Join Date: Jan 2017
Old 01-24-2017 , 05:37   Re: Vip free from 23:00 till 11:007
Reply With Quote #3

Compile yourself or 23to11.amxx


CODE:
Quote:
#include <amxmodx>
#include <hamsandwich>

#define PLUGIN "Free VIP"
#define VERSION "0.1"
#define AUTHOR "XTCS"

new g_FreeVip[33];
new g_Time_1, g_Time_2

public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)

g_Time_1 = register_cvar("free_vip_time_from", "23")
g_Time_2 = register_cvar("free_vip_time_to", "11")

RegisterHam(Ham_Spawn, "player", "fwHamPlayerSpawnPost", 1)

}

public fwHamPlayerSpawnPost(id)
{
new szTime[3]
get_time("%H",szTime,2)

new Time_1 = get_pcvar_num(g_Time_1)
new Time_2 = get_pcvar_num(g_Time_2)

new iTime = str_to_num(szTime)
if( 20 <= iTime <= 24 )
{
if( !(get_user_flags(id) & ADMIN_RESERVATION) )
{
remove_user_flags(id, ADMIN_USER);
set_user_flags(id, ADMIN_LEVEL_H);
g_FreeVip[id] = true;
set_hudmessage( 255, 255, 255, -1.0, 0.87, 0, 0.0, 12.0, 0.1, 0.2, -1 );
show_hudmessage ( id, "You get FREE VIP from %d:00 to %d:00!", Time_1, Time_2)
}
}
else if( 00 <= iTime <= 09 )
{
if( !(get_user_flags(id) & ADMIN_RESERVATION) )
{
remove_user_flags(id, ADMIN_USER);
set_user_flags(id, ADMIN_LEVEL_H);
g_FreeVip[id] = true;
set_hudmessage( 255, 255, 255, -1.0, 0.87, 0, 0.0, 12.0, 0.1, 0.2, -1 );
show_hudmessage ( id, "You get FREE VIP from %d:00 to %d:00!", Time_1, Time_2)
}
}
else if( g_FreeVip[id] )
{
remove_user_flags(id, ADMIN_LEVEL_H);
set_user_flags(id, ADMIN_USER);
g_FreeVip[id] = false;
}
}

Last edited by MaXs; 01-24-2017 at 05:41.
MaXs is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 01-24-2017 , 08:33   Re: Vip free from 23:00 till 11:007
Reply With Quote #4

Good job. You get extra points for posting in both topics.
__________________
OciXCrom is offline
Send a message via Skype™ to OciXCrom
MaXs
Member
Join Date: Jan 2017
Old 01-24-2017 , 09:52   Re: Vip free from 23:00 till 11:007
Reply With Quote #5

Good job.You get extra points for answering in both topics.damass
MaXs 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 21:00.


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