Raised This Month: $ Target: $400
 0% 

get error when a guy not kill by another player


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
ConnorMcLeod
Veteran Member
Join Date: Jul 2006
Location: France (95)
Old 08-16-2008 , 15:39   Re: get error when a guy not kill by another player
Reply With Quote #3

@x-olent
Have also to check if killer is not an entity.

PHP Code:
/* 
*   AMXMOD script. 
*   (plugin_bonus1.sma) 
*   by DreamZSW <[email protected]
*   This file is provided as is (no warranties). 

*/ 
#include <amxmodx>
#include <cstrike>
#define MAX_NAME_LENGTH 32 
#define MAX_TEXT_LENGTH 512 
#define ACCESS_LEVEL ADMIN_LEVEL_A 
// Default on/off 
new gBonusMode 
new gBonusCount 
new gBonusIndex[5] = { 5000,4000,3000,2000,1000 }
new 
g_iMaxPlayers 
public admin_bonuskill(id

// Check access level 
if (!(get_user_flags(id)&ACCESS_LEVEL)) { 
  
console_print(id,"[AMX] You have no access to that command"
  return 
PLUGIN_HANDLED 

// Check arguments 
if (read_argc() < 2) { 
  
console_print(id,"[AMX] Usage: amx_bonuskill < 1 | 0 >"
  return 
PLUGIN_HANDLED 

new 
sArg1[MAX_NAME_LENGTH
read_argv(1,sArg1,MAX_NAME_LENGTH
if (
str_to_num(sArg1)) { 
  
gBonusMode 
  client_print
(id,print_console,"[AMX] Bonus money for kills is now ON."

else { 
  
gBonusMode 
  client_print
(id,print_console,"[AMX] Bonus money for kills is now OFF."

return 
PLUGIN_HANDLED 

public 
event_death() 

if (
gBonusMode) { 
  new 
iKiller read_data(1)
  if(
iKiller g_iMaxPlayers)
    return 
  new 
iVictim read_data(2
  new 
sMsg[MAX_TEXT_LENGTH
  new 
sName[MAX_NAME_LENGTH
  
get_user_name(iKiller,sName,MAX_NAME_LENGTH
 
  if ((
iKiller != iVictim) && (gBonusCount sizeof gBonusIndex) && (get_user_team(iKiller) != get_user_team(iVictim))) { 
   
gBonusCount++ 
   
cs_set_user_money(iKiller,cs_get_user_money(iKiller)+gBonusIndex[gBonusCount-1]) 
   if (
gBonusCount == 1) { 
    
format(sMsg,MAX_TEXT_LENGTH,"%s first blood^n================^nget money +$%i",sName,gBonusIndex[gBonusCount-1]) 
    
set_hudmessage(random_num(0,255), random_num(0,255), random_num(0,255), 0.020.2506.06.00.50.153
   } 
   else if (
gBonusCount == 2) { 
    
format(sMsg,MAX_TEXT_LENGTH,"%s got the 2nd kill! Awarded (+$%i money)",sName,gBonusIndex[gBonusCount-1]) 
    
set_hudmessage(random_num(0,255), random_num(0,255), random_num(0,255), 0.020.2606.06.00.50.153)
   } 
   else if (
gBonusCount == 3) { 
    
format(sMsg,MAX_TEXT_LENGTH,"%s got the 3rd kill! Awarded (+$%i money)",sName,gBonusIndex[gBonusCount-1]) 
    
set_hudmessage(random_num(0,255), random_num(0,255), random_num(0,255), 0.020.2706.06.00.50.153
   } 
   else if (
gBonusCount == 4) { 
    
format(sMsg,MAX_TEXT_LENGTH,"%s got the 4rd kill! Awarded (+$%i money)",sName,gBonusIndex[gBonusCount-1]) 
    
set_hudmessage(random_num(0,255), random_num(0,255), random_num(0,255), 0.020.2806.06.00.50.153
   }
   else {
    
format(sMsg,MAX_TEXT_LENGTH,"%s got the %ith kill! Awarded (+$%i money)",sName,gBonusCount,gBonusIndex[gBonusCount-1]) 
    
set_hudmessage(random_num(0,255), random_num(0,255), random_num(0,255), 0.020.2906.06.00.50.153
   } 
   
show_hudmessage(0,sMsg)
  } 



public 
event_round_end() { 
gBonusCount 

/************************************************************ 
* PLUGIN FUNCTIONS 
************************************************************/ 
public plugin_init() 

register_plugin("Plugin Money Bonus","1.0","DreamZSW"
register_event("DeathMsg","event_death","a","1!0"
register_event("SendAudio","event_round_end","a","2&%!MRAD_terwin","2&%!MRAD_ctwin","2&%!MRAD_rounddraw"
register_concmd("amx_bonuskill","admin_bonuskill",ACCESS_LEVEL,"amx_powers < authid | part of nick >")
g_iMaxPlayers get_maxplayers() 

__________________
- tired and retired -

- my plugins -
ConnorMcLeod is offline
 



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 03:14.


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