Skocz do zawartości

Witamy w Nieoficjalnym polskim support'cie AMX Mod X

Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

Caribim - zdjęcie

Caribim

Rejestracja: 12.07.2008
Aktualnie: Nieaktywny
Poza forum Ostatnio: 15.12.2014 18:56
-----

Moje posty

W temacie: Diablo mod crashuje serwer

23.06.2010 14:53

1 post :0.

W temacie: Diablo mod crashuje serwer

23.06.2010 14:24

;;;
; To enable a module, remove the semi-colon (;) in front of its name.

; If it's not here, simply add it its name, one per line.

; You don't need to write the _amxx part or the file extension.

;;;

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; SQL Modules usually need to be enabled manually ;;

;; You can have any number on at a time.  Use      ;;
;;  amx_sql_type in sql.cfg to specify the default ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

mysql
sqlite

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Put third party modules below here.              ;;
;; You can just list their names, without the _amxx ;;
;;  or file extension.                              ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;



;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; These modules will be auto-detected and loaded   ;;
;;  as needed.  You do not need to enable them here ;;
;;  unless you have problems.                       ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

fun
engine
fakemeta
geoip
sockets
regex
;nvault
cstrike
csx
Nadal nie działa.

W temacie: Diablo mod crashuje serwer

23.06.2010 13:51

Edytowałem według wzoru.

W temacie: Itemki

21.06.2010 19:53

Masz + za chęci, ale nie działa.

W temacie: Proste itemki

19.06.2010 19:31

Dodaj:
new player_b_grawitacja[33] = 1     //Wyzszy skok

player_b_grawitacja[id] = 0

     if (player_b_grawitacja[id] > 0)
{
add(itemEffect, 199, "dzięki temu itemowi twoja grawitacja jest zmniejszona<br>")
}

W public set_gravitychange(id) znajdź:
			set_user_gravity(id,1.0*(1.0-player_b_gravity[id]/12.0))

i zamień na:
			set_user_gravity(id,1.0*(1.0-player_b_gravity[id]/12.0))
if (player_b_grawitacja[id] > 0) set_user_gravity(id, 0.x)

W miejsce x wstaw liczbe, im mniejsza tym mniejsza grawitacja.
Na koniec zrób item:
                case x:
{
player_item_name[id] = "SuperMan"
player_item_id[id] = rannum
player_b_grawitacja[id] = 1
show_hudmessage(id, "Znalazłes przedmiot: %s :: Masz zmniejszona grawitacje", player_item_name[id],player_b_explode[id])
}