←  Szukam pluginu

AMXX.pl: Support AMX Mod X i SourceMod

»

Blokowanie granatow na mapach aim/awp i Sp...

  • +
  • -
Haq. - zdjęcie Haq. 06.08.2015

Jest jakiś plugin na blokowanie Granatów na tych mapkach?



Bo mój VIP ma dodawane Granaty i na mapach aim/awp też są one dodawane :P



I jeszcze jedno.



Jak wyłączyć Informacje o spadochronie ?

Po kto wejdzie na Serwer pokazuje się na Say infromacje że ten Vip jest darmowy dla wszystkich ITP :D



sm_parachute_enabled "1" - 0: disables the plugin - 1: enables the plugin

sm_parachute_fallspeed "100" - speed of the fall when you use the parachute

sm_parachute_linear "1" - 0: disables linear fallspeed -1: enables it

sm_parachute_msgtype "0" - 0: disables Information -1: Chat -2: Panel -3: BottomCenter

sm_parachute_cost "0" - cost of the parachute (CS ONLY) (If cost = 0 then free for everyone)

sm_parachute_payback "75" - how many percent of the parachute cost you get when you sell your parachute (ie. 75% of 1000 = 750$)

sm_parachute_welcome "0" - 0: disables Welcome Message -1: enables it

sm_parachute_roundmsg "0" - 0: disables Round Message - 1: enables it

sm_parachute_model "1" - 0: dont use the model - 1: display the Model

sm_parachute_decrease "50" - 0: dont use Realistic velocity-decrease - x: sets the velocity-decrease.

sm_parachute_button "1" - 1: uses button +USE for parachute usage. - 2: uses button +JUMP.a
Odpowiedz

  • +
  • -
Linux' - zdjęcie Linux' 06.08.2015

1. Blokada to tylko obejscie problemu, lepiej w ogole nie dawac nic na tych mapach. Tworzysz np taki stock

stock JakaMapa(prze[])
{
	new mapname[33]
	get_mapname(mapname, charsmax(mapname))

	if(!equal(prze, mapname, 4))
	{
		return false;
	}

	return true;
}

Uzycie: Przed wykonaniem funkcji stawiasz warunek

if(!JakaMapa("aim_"))

funkcja nie bedzie wykonywana na mapach z przedrostkiem aim_. Co do spadochronu, trzeba przerobic plugin.

Odpowiedz