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
 

Zdjęcie

anty flesz swojej drużynie


  • Zamknięty Temat jest zamknięty
10 odpowiedzi w tym temacie

#1 Arvanity

    Zaawansowany

  • Użytkownik

Reputacja: -3
Nowy

  • Postów:135
Offline

Napisano 12.08.2011 19:07

Witam :> , mam ten plugin wgrany na serwerze No Team Flash - AMXX.pl: Support AMX Mod X
na moim testowym serwerze z gamesola normalnie działa a na serwerze głównym z pukawki gdzie jest tylko inne bo jest wgrane dproto nie działa wie ktoś czy na dproto działa ten plugin ?
  • +
  • -
  • 0

#2 Profesjonalista

    Banned

  • Zbanowany

Reputacja: 6
Nowy

  • Postów:98
  • Imię:Rafi
  • Lokalizacja:Lbk
Offline

Napisano 12.08.2011 19:14

Tak, moze masz zle dproto wgrane.

#3 Hiroshima

    Godlike

  • Przyjaciel

Reputacja: 1 327
Godlike

  • Postów:4 984
  • Steam:steam
  • Imię:Michał
  • Lokalizacja:Málaga
Offline

Napisano 12.08.2011 19:14

Automatyczna wiadomość


Ten temat został przeniesiony z forum:
AMX Mod X -> Problemy
do
AMX Mod X -> Problemy z pluginami

  • +
  • -
  • 0

#4 Arvanity

    Zaawansowany

  • Autor tematu
  • Użytkownik

Reputacja: -3
Nowy

  • Postów:135
Offline

Napisano 12.08.2011 19:28

dproto jest dobre bo pukawka podstawowo instaluje ja nic nie zmieniałem w nim
  • +
  • -
  • 0

#5 Abes Mapper

    Repulsion Gel

  • Przyjaciel

Reputacja: 2 017
Godlike

  • Postów:7 356
  • Steam:steam
  • Imię:Sebastian
  • Lokalizacja:Sulejówek
Offline

Napisano 12.08.2011 23:54

Najpierw to powinno się samemu przetestować działanie pluginu na dproto i bez niego. Następnie wyłączyć wszystkie dodatkowe pluginy lub uruchomić plugin na czystym AMXX.
  • +
  • -
  • 0

#6 Hiroshima

    Godlike

  • Przyjaciel

Reputacja: 1 327
Godlike

  • Postów:4 984
  • Steam:steam
  • Imię:Michał
  • Lokalizacja:Málaga
Offline

Napisano 13.08.2011 00:03

to nie ma nic wspolnego z dproto... gdybys tak chociaz dal jakies logi, cokolwiek...
  • +
  • -
  • 0

#7 DarkGL

    Nie oddam ciasteczka !

  • Administrator

Reputacja: 6 555
Godlike

  • Postów:11 985
  • GG:
  • Steam:steam
  • Imię:Rafał
  • Lokalizacja:Warszawa
Offline

Napisano 13.08.2011 00:07

i kod pluginu
  • +
  • -
  • 0

#8 Arvanity

    Zaawansowany

  • Autor tematu
  • Użytkownik

Reputacja: -3
Nowy

  • Postów:135
Offline

Napisano 13.08.2011 09:00

kod pluginu wygląda tak
/*************************************************************************************************************
                        	  		 AMX No Team Flash

  Version: 0.2
  Author: KRoT@L

  0.1    Release
  0.2    Bug fix


  You won't be flashed by your teammates.


  Cvar:

	no_team_flash "1"		-	0: Disables the plugin
                        1: Enables the plugin
                        

  Setup (AMX 0.9.9):

	Install the amx file.
  Enabled VexdUM (both in metamod/plugins.ini and amx/config/modules.ini)
  
  
  Credits:
  
  Requested by baldbobby
  Cluster Grenade by doomy

*************************************************************************************************************/

#include <amxmodx>

new g_msgScreenFade, grenade[32], last
new Float:g_gametime, g_owner

public plugin_init()
{
	register_plugin("No Team Flash", "0.2", "KRoTaL")
	register_cvar("no_team_flash", "1")
	register_event("ScreenFade", "eventFlash", "be", "4=255", "5=255", "6=255", "7>199")
	register_event("TextMsg", "fire_in_the_hole", "b", "2&#Game_radio", "4&#Fire_in_the_hole")
	register_event("TextMsg", "fire_in_the_hole2", "b", "3&#Game_radio", "5&#Fire_in_the_hole")
	register_event("99", "grenade_throw", "b")
	g_msgScreenFade = get_user_msgid("ScreenFade")
}

public eventFlash(id)
{
  new Float:gametime = get_gametime()
  if(gametime != g_gametime)
  {
    g_owner = get_grenade_owner()
    g_gametime = gametime
  }
  if(is_user_connected(g_owner) && g_owner != id && get_user_team(id) == get_user_team(g_owner))
  {
  	message_begin(MSG_ONE, g_msgScreenFade, {0,0,0}, id)
  	write_short(1)
  	write_short(1)
  	write_short(1)
  	write_byte(0)
  	write_byte(0)
  	write_byte(0)
  	write_byte(255)
  	message_end()
	}
}

public grenade_throw()
{
	if(read_datanum() < 2)
    return PLUGIN_HANDLED_MAIN

	if(read_data(1) == 11 && (read_data(2) == 0 || read_data(2) == 1))
	{
		add_grenade_owner(last)
	}

	return PLUGIN_CONTINUE
}

public fire_in_the_hole()
{
	new name[32]
	read_data(3, name, 31)
	last = get_user_index(name)

	return PLUGIN_CONTINUE
}

public fire_in_the_hole2()
{
	new name[32]
	read_data(4, name, 31)
	last = get_user_index(name)

	return PLUGIN_CONTINUE
}

add_grenade_owner(owner)
{
	for(new i = 0; i < 32; i++)
  {
		if(grenade[i] == 0)
    {
			grenade[i] = owner
			return
		}
	}
}

get_grenade_owner()
{
	new which = grenade[0]
	for(new i = 1; i < 32; i++)
  {
		grenade[i-1] = grenade[i]
	}
	grenade[31] = 0
	return which
}
W logach nie ma żadnego errora a w zwykłych logach ani jednej linkijki na temat tego pluginu a w amx normalnie jest włączony i cvar dodany do amxx.cfg
  • +
  • -
  • 0

#9 DarkGL

    Nie oddam ciasteczka !

  • Administrator

Reputacja: 6 555
Godlike

  • Postów:11 985
  • GG:
  • Steam:steam
  • Imię:Rafał
  • Lokalizacja:Warszawa
Offline

Napisano 13.08.2011 11:08

pokaz plugins.ini metamoda liblist.gam plugins.ini amxx'a i logi zwykłe (nie error logi)
sprawdź czy w konsoli serwera podczas włączania nie pokazuje ci się coś ciekawego
wgrałeś plik *.amxx do folderu plugins ? (tak dla pewności ;P)
  • +
  • -
  • 0

#10 Arvanity

    Zaawansowany

  • Autor tematu
  • Użytkownik

Reputacja: -3
Nowy

  • Postów:135
Offline

Napisano 13.08.2011 12:25

libist.gam
game "Counter-Strike"
url_info "www.counter-strike.net"
url_dl ""
version "1.6"
size "184000000"
svonly "0"
secure "1"
type "multiplayer_only"
cldll "1" 
hlversion "1111"
nomodels "1"
nohimodel "1"
mpentity "info_player_start"
gamedll "dlls\mp.dll"
//gamedll_linux "dlls/cs_i386.so"
gamedll_linux "addons/metamod/dlls/metamod_i386.so"
trainmap "tr_1"
pluugins.ini
; AMX Mod X plugins

; Admin Base - Always one has to be activated
;admin.amxx		; admin base (required for any admin-related)
;admin_sql.amxx		; admin base - SQL version (comment admin.amxx)
amxbans_core.amxx
amxbans_main.amxx

; Basic
admincmd.amxx		; basic admin console commands
adminhelp.amxx		; help command for admin console commands
adminslots.amxx		; slot reservation
multilingual.amxx	; Multi-Lingual management

; Menus
menufront.amxx		; front-end for admin menus
cmdmenu.amxx		; command menu (speech, settings)
plmenu.amxx		; players menu (kick, ban, client cmds.)
;telemenu.amxx		; teleport menu (Fun Module required!)
mapsmenu.amxx		; maps menu (vote, changelevel)

; Chat / Messages
adminchat.amxx		; console chat commands
antiflood.amxx		; prevent clients from chat-flooding the server
scrollmsg.amxx		; displays a scrolling message
imessage.amxx		; displays information messages
adminvote.amxx		; vote commands

; Map related
;nextmap.amxx		; displays next map in mapcycle
;mapchooser.amxx		; allows to vote for next map
timeleft.amxx		; displays time left on map

; Configuration
pausecfg.amxx		; allows to pause and unpause some plugins
statscfg.amxx		; allows to manage stats plugins via menu and commands

; Counter-Strike
restmenu.amxx		; restrict weapons menu
statsx.amxx		; stats on death or round end (CSX Module required!)
;miscstats.amxx		; bunch of events announcement for Counter-Strike
;stats_logging.amxx	; weapons stats logging (CSX Module required!)

; Enable to use AMX Mod plugins
;amxmod_compat.amxx	; AMX Mod backwards compatibility layer

; Custom - Add 3rd party plugins here

galileo.amxx - plugin od rtv itp .
afkbomb.amxx - wyrzuca pake od graczy afk.
admin_spec_esp.amxx - admin speec wh
adminlisten.amxx - admin widzi wszystkie wiadomosci
polski_cs.amxx
descriptive_fire_in_the_hole.amxx
admin_gag.amxx - dajemy gaga graczowi
interp.amxx - interp
admin_freelook.amxx - admin patrzy z każdej kamer
fakefull_original.amxx
alt_end_round_sounds.amxx
ptb.amxx
gamenamechanger.amxx
easy_advertiser.amxx
amx_banconfig.amxx
ban_neo.amxx
amxbans_ssban.amxx
amxbans_freeze.amxx
amxbans_flagged.amxx
no_team_flash.amxx
amxx.cfg
no_team_flash 1

description      stat pend  file              vers      src   load  unlod
 [ 1] AMX Mod X        RUN   -    amxmodx_mm_i386.  v1.8.1.3  ini   Start ANY  
 [ 2] dproto_EF        RUN   -    dproto_i386.so    v0.9.87   ini   Start Never
 [ 3] MySQL            RUN   -    mysql_amxx_i386.  v1.8.1.3  pl1   ANY   ANY  
 [ 4] SQLite           RUN   -    sqlite_amxx_i386  v1.8.1.3  pl1   ANY   ANY  
 [ 5] Fun              RUN   -    fun_amxx_i386.so  v1.8.1.3  pl1   ANY   ANY  
 [ 6] Engine           RUN   -    engine_amxx_i386  v1.8.1.3  pl1   ANY   ANY  
 [ 7] FakeMeta         RUN   -    fakemeta_amxx_i3  v1.8.1.3  pl1   ANY   ANY  
 [ 8] Ham Sandwich     RUN   -    hamsandwich_amxx  v1.8.1.3  pl1   ANY   ANY  
 [ 9] CSX              RUN   -    csx_amxx_i386.so  v1.8.1.3  pl1   ANY   ANY  
 [10] CStrike          RUN   -    cstrike_amxx_i38  v1.8.1.3  pl1   ANY   ANY  
10 plugins,
wszystko dodane na pewno prawidłowo i zwykłe logi dam
[code]L 08/13/2011 - 11:59:31: -------- Mapchange to de_dust --------
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx] ---
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx] Wczytywanie pliku: "addons/amxmodx/configs/roundsound.ini"
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx] ---
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx] [ Loading 19 CTs Sounds ]
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr1.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr2.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr3.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr4.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr5.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr6.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr7.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr8.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr9.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr10.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr11.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr12.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr13.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr14.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr15.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr16.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr17.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr18.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr19.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx] ---
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx] [ Loading 19 Ts Sounds ]
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr1.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr2.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr3.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr4.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr5.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr6.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr7.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr8.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr9.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr10.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr11.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr12.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr13.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr14.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr15.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr16.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr17.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr18.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx]    - sound/misc/redr19.mp3
L 08/13/2011 - 11:59:31: [alt_end_round_sounds.amxx] ---
L 08/13/2011 - 11:59:32: [amxbans_core.amxx] Login: "Lqu!<61><STEAM_0:0:18588327><>" became an admin (account "STEAM_0:0:18588327") (access "bcdefijmnu") (address "194.106.192.186") (nick "Lq") (static 0)
L 08/13/2011 - 11:59:32: [amxbans_main.amxx] [AMXBans] Nie znaleziono powodow banow w bazie danych. Zaladowano standardowe.
L 08/13/2011 - 11:59:32: [amxbans_main.amxx] [AMXBans] AMXBans Gm 1.6 jest wlaczony

  • +
  • -
  • 0

#11 DarkGL

    Nie oddam ciasteczka !

  • Administrator

Reputacja: 6 555
Godlike

  • Postów:11 985
  • GG:
  • Steam:steam
  • Imię:Rafał
  • Lokalizacja:Warszawa
Offline

Napisano 13.08.2011 12:36

wyłączaj po kolei pluginy ustalisz który koliduje z no_team_flash
  • +
  • -
  • 0




Użytkownicy przeglądający ten temat: 0

0 użytkowników, 0 gości, 0 anonimowych