AlliedModders
XFactor Servers

When die show...


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Driving To Heaven
Senior Member
Karma: Neutral
Old 11-03-2009 , 17:45   When die show...
Reply With Quote #1

Hello.

When die show like motd type:

--------------------------
You're Dead!

You have been killed by "Player Name"

You lost 1000$

OK
--------------------------

Press OK, and back to game.

Money lost, random 5. First 1000$, two 2000$, three 3000$, four 4000$,
Five 5000$.
Driving To Heaven is offline
Exolent[jNr]
AMX Mod X Moderator
Karma: Good
Location: RAWR!
Old 11-03-2009 , 18:33   Re: When die show...
Reply With Quote #2

Code:
#include < amxmodx > #include < cstrike > #include < hamsandwich > public plugin_init( ) {     RegisterHam( Ham_Killed, "player", "FwdPlayerDeath", 1 ); } public FwdPlayerDeath( iVictim, iKiller, bShouldGib ) {     if( iVictim != iKiller && is_user_connected( iKiller ) ) {         new szName[ 128 ];         get_user_name( iKiller, szName, 31 );         replace_all( szName, 127, ">", "&gt;" );         replace_all( szName, 127, "<", "&lt;" );                 new iMoney = random_num( 1, 5 ) * 1000;         cs_set_user_money( iVictim, max( 0, cs_get_user_money( iVictim ) - iMoney ) );                 new szMotd[ 512 ];         formatex( szMotd, 511, "<html><body><p>You're Dead!<br /><br />You have been killed by %s<br /><br />You lost $%i</p></body></html>",             szName, iMoney );                 show_motd( iVictim, szMotd, "You're dead!" );     } }
__________________
Hack Detector
Version: 0.0.4
Detects: Bhop Hacks, KzHack
Official Website
The site is down temporarily.
Exolent[jNr] is offline
Driving To Heaven
Senior Member
Karma: Neutral
Old 11-04-2009 , 13:00   Re: When die show...
Reply With Quote #3

OMG! Thank you Exolent[jNr]. You best!
Driving To Heaven 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 05:39.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Theme made by Freecode Sponsored by Layered Technologies