PDA

View Full Version : Bomb events plugin


rex
03-25-2004, 04:44
would someone be able to fix this plugin for me please?
it loads okay on amxx but there are some bugs.
when evensome one drops the bomb it say the I (the admin) drop it, even when the admin is on the other team.
then say when someone picks it up and when someone sets it.
also if the Ts set the bomb and then kill all the CTs, the counter keeps going next round.
have try changeing it to amxmodx.inc but still get the same problem
thanks

pr0*killa
03-25-2004, 20:08
post in the Support Help ! not in Suggestions! :evil:

devicenull
03-25-2004, 21:44
No, its a request, it belongs here

I just dont understand what he wants

MagicShot
03-26-2004, 02:28
I just dont understand what he wants

Lol we'll since Noone Except me Downloaded it I would asume you wouldn't knwo what he wants..

MagicShot
03-26-2004, 02:35
This This:

Change This:

public bomb_drop(){
if (!(get_user_flags(0,STS_CHNL)&(1<<STS_FLAG17))) return
new name[32]
get_user_name(planter, name , 31)
set_hudmessage(200, 100, 0, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 1)
show_hudmessage(0,"%s dropped the bomb!!!",name)
}

To this:

public bomb_drop(id){
if (!(get_user_flags(0,STS_CHNL)&(1<<STS_FLAG17))) return
new name[32]
get_user_name(id, name , 31)
set_hudmessage(200, 100, 0, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 1)
show_hudmessage(0,"%s dropped the bomb!!!",name)
}

See if that changes anything..

rex
03-26-2004, 02:41
it okay, looking like it fixed itself with AMX Mod X 0.16.

thanks for your reply magic might try that too.
:)