Raised This Month: $32 Target: $400
 8% 

Money per kill adjust?


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
gameplayonline
Member
Join Date: Jun 2017
Old 06-20-2018 , 07:08   Money per kill adjust?
Reply With Quote #1

Hello im doign VIP plugin.
I have this code:
Code:
	/* Plugin generated by AMXX-Studio */


#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <fun>

#define PLUGIN " VIP"
#define VERSION "1.0"
#define AUTHOR "felippeao"

new kill_bonus, hs_bonus;
new maxplayers;

public plugin_init() {
	register_plugin(PLUGIN, VERSION, AUTHOR)
	
	kill_bonus = register_cvar("money_kill_bonus","450")
	hs_bonus = register_cvar("money_hs_bonus","500")
	register_event("DeathMsg","death_msg","a")	
	// Add your code here...
}

public death_msg()
{
	
	new attacker = read_data( 1 )
	new headshot = read_data(3)
	
	if (get_user_flags(attacker) & ADMIN_LEVEL_H & read_data(1)<=maxplayers && read_data(1) && read_data(1)!=read_data(2)) 
	{
		new money = read_data(2)
		if(headshot)
		{
			money += get_pcvar_num(hs_bonus)
			cs_set_user_money(attacker,cs_get_user_money(attacker) + money)
			client_print(read_data(1), print_chat, "[VIP] %d got %d money for kill",read_data(1), get_pcvar_num(hs_bonus))
		}
		else 
		{
			cs_set_user_money(attacker,cs_get_user_money(attacker) + get_pcvar_num(kill_bonus))
			client_print(read_data(1), print_chat, "[VIP] %d got %d money for kill",read_data(1), get_pcvar_num(kill_bonus))
		}
	}
}
	}
Im getting sometimes 802$ per kill... Why? Normal is 300 and my cvar is 450 bonus i think it must be 750 but im getting 802

Last edited by gameplayonline; 06-20-2018 at 07:16.
gameplayonline is offline
OciXCrom
Veteran Member
Join Date: Oct 2013
Location: Macedonia
Old 06-20-2018 , 07:48   Re: Money per kill adjust?
Reply With Quote #2

Because the genius who made the plugin made the amount of money to be added to the victim's id which can be any number from 1 to 32.

PHP Code:
new money read_data(2
__________________

Last edited by OciXCrom; 06-20-2018 at 07:49.
OciXCrom is offline
Send a message via Skype™ to OciXCrom
maqi
Senior Member
Join Date: Apr 2017
Location: Serbia
Old 06-20-2018 , 07:56   Re: Money per kill adjust?
Reply With Quote #3

Lovely
__________________
stuff
maqi is offline
gameplayonline
Member
Join Date: Jun 2017
Old 07-01-2018 , 09:04   Re: Money per kill adjust?
Reply With Quote #4

Thanks
gameplayonline is offline
Bugsy
AMX Mod X Moderator
Join Date: Feb 2005
Location: NJ, USA
Old 07-01-2018 , 09:08   Re: Money per kill adjust?
Reply With Quote #5

https://forums.alliedmods.net/showthread.php?t=306378
__________________
Bugsy 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 17:20.


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