ieškau du JailBreak modifikacijos pluginus.
1. Pluginas, kuris neleidžia kaliniams/policininkams pirkti ginklų (su "B" raide), ta prasme užrakina.
2. Pluginas kuris paskirsto į lygias komandas. Tarkim 2 CT ir 7 T.
Kas padės +karma

Code: Select all
#include < amxmodx >#include < engine > const FM_NULLENT = -1; public plugin_init( ) { register_plugin( "BuyZone Remover", "1.0", "xPaw" ); new iEntity = FM_NULLENT; while( ( iEntity = find_ent_by_class( iEntity, "func_buyzone" ) ) > 0 ) if( entity_get_int( iEntity, EV_INT_iuser1 ) != 1337 ) remove_entity( iEntity );} public plugin_precache( ) { new iEntity = create_entity( "func_buyzone" ); if( iEntity ) { entity_set_size( iEntity, Float:{ -4096.0, -4096.0, -4096.0 }, Float:{ -4095.0, -4095.0, -4095.0 } ); entity_set_int( iEntity, EV_INT_iuser1, 1337 ); }}
Users browsing this forum: No registered users and 7 guests