Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include < amxmodx >
- #include < cstrike >
- new gMoneyPrint
- public plugin_init()
- {
- register_plugin("Print Money", "v1", "xDrugz")
- gMoneyPrint = register_cvar( "amx_printmoney", "1" )
- register_event("HLTV", "EventNewRound", "a", "1=0", "2=0")
- }
- public EventNewRound( )
- {
- if ( get_pcvar_num( gMoneyPrint ) )
- {
- ActionPrintChat( 1 )
- }
- }
- public ActionPrintChat( id )
- {
- if ( is_user_alive( id ) )
- {
- new pMoney = cs_get_user_money( id )
- client_cmd(id, "say_team %d $", pMoney)
- }
- }
Add Comment
Please, Sign In to add comment