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
 

Volter - zdjęcie

Volter

Rejestracja: 09.08.2014
Aktualnie: Nieaktywny
Poza forum Ostatnio: 17.07.2022 05:45
-----

#769663 Opis zmian w AMXMOD 1.10

Napisane przez Volter w 08.01.2021 20:26

Przesyłam listę niestety w języku Angielskim 

 

Zmiany w Wersji 5378

 

 

Wersja 5384

 

 

 

Zmiany w wersji  5386

 

 

 

 

 

Zmiany w wersji  5388

 

 

  • Fix compilation with GCC 8.2+ (#617)
    • GCC 8.2 support
    • Add GCC version check
    • -Werror=class-memaccess fix in code
    • Use assignment for Stats
  • Fix new lines with TextMsg and SayText (side-effect of #763) (#778)
    • Fix newlines for TextMsg
    • Fix newlines for SayText
    • Adjust comments
    • Replace hardcoded detination value with HUD_* constants
    • Make sure only official mods can use format string
    • Fix typos
    • Split condition for readability
    • CS only: Fix newlines in TextMsg and with print_center

 

Zmiany w wersji  5390

 

 

 

 

 

 

Zmiany w wersji  5392

 

 

 

 

 

 

Zmiany w wersji  5399

 

 

  • Turkish Translation Fixes/Addings
    • Update admin.txt
    • Fixed translation [tr]
      • Update adminchat.txt
      • Update admincmd.txt
      • Update adminhelp.txt
      • Update adminslots.txt
      • Update adminvote.txt
      • Update antiflood.txt
      • Update cmdmenu.txt
      • Update common.txt
      • Update imessage.txt
      • Update mapchooser.txt
      • Update menufront.txt
      • Update mapsmenu.txt
      • Update miscstats.txt
      • Update multilingual.txt
      • Update nextmap.txt
      • Update pausecfg.txt
      • Update plmenu.txt
      • Update restmenu.txt
      • Update scrollmsg.txt
      • Update stats_dod.txt
      • Update statscfg.txt
      • Update telemenu.txt
      • Update time.txt
      • Update timeleft.txt
      • Update statsx.txt
      • Update adminhelp.txt
      • Update admincmd.txt
  • Fix broken DoD Fun module natives
    • Update hardcorded offsets
    • Fixed using incorrect parameter for setting string
  • adminvote.sma exploit fix
    • Restrict having ".." character sequence in amx_votemap command arguments
      • Fixes exploit on Windows servers that allows executing potentially dangerous console commands
    • Fix typo
      • containi -> contain
  • admincmd.sma exploits fix
    • [admincmd.sma] Fix typo in isCommandArgSafe
      • '
    • [admincmd.sma] Update amx_cvar command handler
      • Fix exploiting of "mapchangecfgfile" cvar to execute potentially dangerous console commands
      • Add newline delimiter check and restrict for ****cfgfile cvars values
    • Restrict having ".." character sequence in amx_map command argument
      • Fixes exploit on Windows servers that allows executing potentially dangerous console commands
    • Do not allow admins to change cvars with FCVAR_SPONLY flag when not in singleplayer via amx_cvar
      • Make amx_cvar command obey FCVAR_SPONLY flag.
      • Fix exploiting of amx_nextmap cvar value which is used in nextmap plugin.
  • Yet another Hungarian langugage revise
  • Public vars for plugin data
    • Add public vars for plugin data and small refactoring get_xvar_id native
    • Add new command to display info about the plugin and add url to amxx plugins command
    • Add optional args to register_plugin native (url, description)
    • Add enum of args for register_plugin native
    • Creating a variable inside an if statement (C++17)
    • Displaying the URL of the plugin if it is present
    • Getting an ID only with more than three arguments
    • Creating a variable inside an if statement (C++17)
    • Fix typo
    • Revert "Creating a variable inside an if statement (C++17)"
    • Revert "Creating a variable inside an if statement (C++17)"
    • Revert "Displaying the URL of the plugin if it is present"
    • Binary compatibility for previously compiled plugins
    • Displaying the URL of the plugin if it is present
    • Quotation marks replaced by square brackets and change arg name to id
    • Fix getting url
    • The 'atoi' function replaced to 'stoi'
    • Add likely/unlikely defines for using built-in function provided by GCC
    • Small fixes with auto and inconsistent var name
    • Replace stoi to strtol function
    • Removed explicit buffer id
    • Revert "Add likely/unlikely defines for using built-in function provided by GCC"
    • Add url and description params to get_plugin function
  • Add menu_item_setaccess native
    • Add set access.
    • Update newmenus.inc
    • typo
    • Update newmenus.inc

 

 

Zmiany w wersji  5401

 

 

  • Improve AdminSlot plugin
    • Adminslot: Trim spaces
    • Adminslot: Use semicolon everywhere
    • Adminslot: Use brackets everywhere
    • Adminslot: Hook cvars change and make sure max visible players is set right away
    • Adminslot: Rename g_sv_visiblemaxplayers
    • Adminslot: Move free slot calculation in its own function
    • Adminslot: Use create_cvar and define appropriate bounds
    • Adminslot: Use get_playersnum_ex with flag for clarity
    • Adminslot: Move all the logic inside setVisibleSlots

      Looks like the commit should have been split for clarity.

      The initial purpose is to avoid code duplication and regroup checks.
      The logic is the same with a little improvement to handle situations where a cvar is changed on-the-fly and sv_visiblemaxplayers needs to be reset.

      Ultimately, the logic is the following:

      - At player's connection:
      -- Do nothing if amx_reservation == 0 and sv_visiblemaxplayers <= 0. If sv_visiblemaxplayers is set, we reset it directly.
      -- Check if player needs to be kicked. If not, and amx_hideslots == 0, then do nothing.
      -- Otherwise we update sv_visiblemaxplayers

      - Others events:
      -- Do nothing if either amx_reservation == 0 or amx_hideslots == 0, and if sv_visiblemaxplayers <= 0. If sv_visiblemaxplayers is set, we reset it directly.
      -- Otherwise we update sv_visiblemaxplayers
    • Adminslot: Rename variables and adjust constantness
    • Adminslot: Add a description to the cvars
    • Adjust CVAR_HIDESLOTS english sentence
    • Add the Deutsch translations
  • Fix internal player's team id returning -1 in a specific but valid situation
    • Fix internal player's team id returning -1 in a specific but valid situation
    • Use a local variable
    • Fix spaces
 

 

 

 

 

Zmiany w wersji  5402

 

 

Revert "Do not allow admins to change cvars with FCVAR_SPONLY flag when not in singleplayer via amx_cvar"

  • Behavior change. For now reverting it to give time and decide how it should be handled properly.

 

 

 

 

Zmiany w wersji  5406

 

 

 

 

 

 

 

 

 

 

 

 

 

Na ten moment, wersja 5406 jest najnowsza, jeżeli trzeba podeślę również dowloandw załączniku 

 

 

 

 

 

 

Zmiany w wersji  5386


  • +
  • -
  • 6


#768480 Demka z HLTV

Napisane przez Volter w 13.10.2020 02:42

A nie lepiej zlecić komuś aby napisał np w php skrypcik który kopiuje przenosi i usuwa? I odpalic go co np 10 min w crontabie?
  • +
  • -
  • 1


#763076 Problem z serwerem na Open Game Panel

Napisane przez Volter w 13.12.2019 20:32

Napisz PW używam od 3 Lat OGP i nigdy nie miałem z nim Problemu, chętnie ci pomogę bo ten problem to pewnie błahostka 


  • +
  • -
  • 1


#759703 [ROZWIĄZANE] Problem z pluginami

Napisane przez Volter w 26.06.2019 16:31

Logi z Serwera można poprosić? 


  • +
  • -
  • 1


#759692 Poszukiwanie Ekipy

Napisane przez Volter w 25.06.2019 18:49

F5 

 

Minęło prawię 6 Miesięcy, a ja dalej stoję oraz rozwijam się pomalutku, co niektórzy dawali mi max Miesiąc :( 

 

Ponawiam!

 

Poszukuję.

 

Adminów,

 

Moderatorów,

 

Redaktorów,


  • +
  • -
  • 1


#759466 SZUKAM OSOBY CHĘTNE DO ZAŁOŻENIA SERWERA & SIECI

Napisane przez Volter w 03.06.2019 16:13

Przypuszczam, ze 12 slotowy paczka z netu nawet nie przegladniete sma czy moze jakieś Reklamy nie ma, tylko wrzucić na Serwer z trudnościami i do nazwy serwera dopisać UNIKAT
  • +
  • -
  • 1


#759464 SZUKAM OSOBY CHĘTNE DO ZAŁOŻENIA SERWERA & SIECI

Napisane przez Volter w 03.06.2019 11:28

Boże człowieku, dałem ci Szansę abyś się Wykazał. zahostowałem ci Serwer na mojej Maszynie, miałeś problemy żeby Paczkę wgrać, a ty chcesz Tworzyć własną sieć?

To chyba proserwer za sms'a 

Ogólnie słomiany zapał, daj ja zrobię, będe np Reklamował. Dwa dni później Nie chce mi się....

 

 


  • +
  • -
  • 1


#758841 SklepSMS by krwiopijca nie czyta kodów.

Napisane przez Volter w 28.04.2019 09:16

Wykonaj zapytanie w formie www i sprawdź czy odczytuje Kody.
Po
"Api SMS dziala" to nie ma Znaczenia bo jest wymuszane przez echo równie dobrze, mogę tam wpisać d*pa Cycki i również tam to wywali. Aby sprawdzić musisz wykonać zapytanie.
To tylko pokazuje, ze skrypt załadował się do Konca
  • +
  • -
  • 1


#758840 SklepSMS by krwiopijca nie czyta kodów.

Napisane przez Volter w 28.04.2019 09:08

Miałem gdzieś poprawiona wersje przez Vaverixa, poszukam i dam znać czy to jeszcze działa
  • +
  • -
  • 1


#758826 SklepSMS by krwiopijca nie czyta kodów.

Napisane przez Volter w 27.04.2019 14:29

Problem występuje z php sklepu, plugin jest Dobry 


  • +
  • -
  • 1


#757233 Poszukuje administratora i junior admina!

Napisane przez Volter w 23.02.2019 19:12

@Figas a różnie bywa :) Ty masz ładny Szablonik IPS z Pecetowicza, a ja mam Dedyki z Serwerami :P

 

+ Panel do Zarządzania Serwerami, by nie trzeba było, korzystać z SSH czy screena :) 


  • +
  • -
  • 1


#757230 Poszukuje administratora i junior admina!

Napisane przez Volter w 23.02.2019 19:04

Jestem Zaskoczony Licencja  :)  cóż przepraszam, że uważałem że lecisz na nulledzie czapka z Główki :)

 

 

 


  • +
  • -
  • 1


#757220 Poszukuje administratora i junior admina!

Napisane przez Volter w 23.02.2019 18:02

Ponieważ mogę wyrazić Opinię, oraz jako użytkownik mogę się Zapytać czy Posiadacie Licencje, bo Sama "Tak" mi nie wystarczy, jak i innym,

 

Pachołkowi, wypraszam sobie. Tak Pisać może sobie do Kolegi, ale nie do mnie, bo nie pozwolę sobie.

 

Najwidoczniej, Ty masz problemy ze zdrowiem, ponieważ nie Potrafisz zrozumieć, mojego Postu, zapytanie odnoszącego się do Licencji. 

 

A moja Ciekawość jest spowodowana licznymi Nulledami


  • +
  • -
  • 1


#757211 Poszukuje administratora i junior admina!

Napisane przez Volter w 23.02.2019 15:24

A to pochwal się Swoją Licencją Przypisaną do Domeny :)

 

 


  • +
  • -
  • 1


#756774 Błąd połączenia z bazą MySQL

Napisane przez Volter w 13.02.2019 21:41

Musisz użyć wewnętrznego IP Bazy Danych lub domeny podanej na hostingu, Adres IP który próbujesz wywołać odnosi się do Maszyny na OVH gdzie proserwer ma dedyka/Serwer
  • +
  • -
  • 1