usunięcie napisu this weapon cannot be dro...
bialas3kpl
19.11.2014
Cześć, wiem że ten napis nie jest związany z zp 4.3, ale chciałbym go usunąć ponieważ mam klasę zombie która pod literką G ma zdolność i wyswietla się ten wlasnie napis
Mianowicie "This weapon cannot be dropped"
psilocybe
19.11.2014
#include <amxmodx>
public plugin_init()
{
register_plugin( "Block Knife Drop Message", "1.0.0", "Arkshine" );
register_message( get_user_msgid( "TextMsg" ), "Message_TextMsg" );
}
public Message_TextMsg ()
{
if ( get_msg_arg_int( 1 ) == print_center )
{
static const MessageToBlock[] = "#Weapon_Cannot_Be_Dropped";
new Message[ sizeof MessageToBlock + 1 ];
get_msg_arg_string( 2, Message, charsmax( Message ) );
return equal( Message, MessageToBlock );
}
return PLUGIN_CONTINUE;
}
Znalezione w 5 sekund na allied. Podobno działa ![]()




