Skocz do zawartości

Nowy szablon forum

mygo.pl

Stworzyliśmy dla Was nowy wygląd forum. Z pewnością znajdziesz rzeczy, które wg Ciebie mogą zostać zmienione - wspomnij o tym w specjalnym wątku.

Czytaj więcej

Jak założyć własną sieć

serwerów CS

Zastanawiasz się nad prowadzeniem własnej sieci serwerów? Przeczytaj podstawowe informacje, na które należy zwrócić uwagę, przy takim projekcie.

Czytaj więcej

Tworzymy spis sieci

dodaj swoją

Dodaj sieć do której należysz, pozwoli to na promocję i budowę ogólnopolskiej bazy sieci CS.

Czytaj więcej

Cała aktywność

Kanał aktualizowany automatycznie

  1. Dzisiaj
  2. Hi! I want to fix this plugin from runemode. It doesn't teleport you away when you are below 50 hp. I tried this plugin on amxmodx 1.8.3 and 1.9 and doesn't work on both versions. Current version: AMX Mod X 1.9.0.5294 + Metamod v1.20 Code: /* About: This is a runemod powerup plugin that interfaces with runemod_base.amxx About this rune: When you go bellow 50 in HP you have a teleported away Credits: Ops in #AMXmod @ Quakenet for alot of help ( + AssKicker & CheesyPeteza ) Thanks to BAILOPAN & PM for help on misc problems kaddar for orginal runemod Todo: No plans */ #include <amxmodx> #include <engine> #include "runemod.inc" // We need to include this file, as it contains info we need. Like #define`s and stocks #define REDEEM_MINIMALDISTANCE 100.0 new g_HasRune[MAXPLAYERS+1] // This is the Array used to store if the user is holding a rune.(Remember the base plugin informs this plugin once he picks up a rune.) new g_MaxPlayers public plugin_init() { register_plugin("RuneMod Redeem", "1.0.1", "EKS") g_MaxPlayers = get_maxplayers() RegisterPlugin("RedeemName","RedeemDisc",{20,255,127},API_EVENTDAMAGEDONE+API_USELANGSYSTEM) } public API_DamageDone(victim,attacker,damage) { if(g_HasRune[victim]) { if(entity_get_float(victim,EV_FL_health) <= 50.0 && !task_exists(victim,1)) { set_task(0.1,"Task_MovePlayer",victim,_,_,"a",1) return PLUGIN_CONTINUE } } return PLUGIN_CONTINUE } public Task_MovePlayer(id) { if(!is_user_alive(id)) return PLUGIN_CONTINUE new Team = get_user_team(id) new TelePortTo=0 for(new i=1;i<=g_MaxPlayers;i++) { if(i != id && Team == get_user_team(i) && is_user_alive(i) && entity_range(i,id) >= REDEEM_MINIMALDISTANCE) { { new Float:Origin[3] entity_get_vector(i,EV_VEC_origin,Origin) Origin[2] = Origin[2] +20.0 for(new b=0;b<=2;b++) { if(random_num(0,1) == 1) { Origin[0] = Origin[0] + random_float(20.0,50.0) Origin[1] = Origin[1] + random_float(20.0,50.0) } else { Origin[0] = Origin[0] + random_float(-50.0,-20.0) Origin[1] = Origin[1] + random_float(-50.0,-20.0) } if(CheckVectorContent(Origin) == 1) { TelePortTo = i break } } if(TelePortTo) { new IntOrigin[3] IntOrigin[0] = floatround(Origin[0]) IntOrigin[1] = floatround(Origin[1]) IntOrigin[2] = floatround(Origin[2]) MakeTeleport(IntOrigin) get_origin(id,IntOrigin) entity_set_vector(id,EV_VEC_origin,Origin) client_print(id,print_chat,"%L",LANG_PLAYER,"RedeemTelepAway") MakeExpl(0,IntOrigin) MakeSmoke(0,IntOrigin) MakeSmoke(0,IntOrigin) return PLUGIN_CONTINUE } } } } return PLUGIN_CONTINUE } public API_DropedRune(id,Reason) //This function is called by the base plugin to inform about the user droped his rune for whatever reason ( he could have used droprune or died ) { g_HasRune[id] = 0 remove_task(id) } // This function is used base plugin to inform this plugin that a user has picked up the rune. public API_PickUpRune(id) { g_HasRune[id] = 1 } stock CheckVectorContent(Float:Origin[3]) // This function check how close a rune spawnpoint is to other rune spawnpoints. And removes any that witin MIN_DISTANCE_BETWEEN_RUNES ( runemod.inc ) { if(point_contents(Origin) != CONTENTS_EMPTY) return 0 Origin[0] += 5.0 if(point_contents(Origin) != CONTENTS_EMPTY) return 0 Origin[0] -= 10.0 if(point_contents(Origin) != CONTENTS_EMPTY) return 0 Origin[0] += 5.0 Origin[1] += 5.0 if(point_contents(Origin) != CONTENTS_EMPTY) return 0 Origin[1] -= 10.0 if(point_contents(Origin) != CONTENTS_EMPTY) return 0 Origin[1] += 5.0 Origin[2] += 5.0 if(point_contents(Origin) != CONTENTS_EMPTY) return 0 Origin[2] -= 10.0 if(point_contents(Origin) != CONTENTS_EMPTY) return 0 return 1 } Przeczytaj cały wpis
  3. Wczoraj
  4. Who can make this plugin for me:plugin count players from both team,and if player number is for example >= 10,plugin will execute command on all players. Count will start on freezetime and command will be executed when new round start. Przeczytaj cały wpis
  5. Is there a plugin available that can lock all rescue closet doors on a map, ensuring they remain locked to avoid accidental or inadvertent opening by players or bots when not in use? While curiosity may lead some to open these doors, it can be problematic when the area is designated as a respawn point and is lost once the door is opened. It’s quite disheartening when a team’s strategic respawn location is lost due to one inexperienced or thoughtless player opening these doors without due consideration for the consequences. A plugin that locks all the closet doors and only unlocks them upon the death of a survivor would greatly enhance the Left 4 Dead game. It would have been helpful if Valve had placed a notice on rescue doors advising players not to open them; it’s a bit myopic of Valve not to have thought of this, in retrospect. Before anyone mentions it, I am aware of a plugin that Silver's made for locking/unlocking every kind of door, but I am looking for something more specific to rescue points that the server could control rather than the player. Does such a bespoke plugin exist for this purpose, or could one be developed by a skilled coder to possibly explore creating a solution? Przeczytaj cały wpis
  6. Description:When a teammate dies, a tombstone will be generated.Players can resurrect teammates by robbing their tombs. (Their souls were so angry that they had to return from hell to take revenge..:))You must be very careful when robbing tombs because there is a risk of deadbody mutating into the witch.2 sp file for EN and CN language.This plugin is inspired by novels "Ghost Blows Out the Light" that I read when I was a student.:)In the novel, we refer to those skilled tomb robbers as Mojin Hunter. Feature list:When a teammate dies, a tombstone will be generated.Players can resurrect teammates by robbing their tombs. 3 chances to be reborn by default.Tomb robbery takes 3 seconds by default.50 chance of resurrection by default.50 chance of mutation by default.Grave glowing.Grave glowing color. Install:Put the "grave_survivor_respawn.txt" file into the "left4dead2\addons\sourcemod\gamedata" folder.Don't forget install the plugin. Requirements:SourceMod 1.11+. Plan:The progress bar of tomb robbing needs to be increased by continuously pressing E. During this process, the progress bar will continue to decrease rapidly.Multiplayer tomb robbing increases the probability of resurrection.QTE system for tomb robbing.Let the character dance and disco during the tomb robbing process. (the dancing plugin is similar, but I haven’t studied the source code yet) CVAR list: Spoiler PHP Code: // Grave glowing color // - // Default: "255 255 255" L4D2_Grave_Glow_Color "255 255 255" // Grave glowing switch // - // Default: "1" // Minimum: "0.000000" // Maximum: "1.000000" L4D2_Grave_Glow_Switch "1" // Respawn chance // - // Default: "3" // Minimum: "0.000000" // Maximum: "99.000000" L4D2_Grave_Respawn_Chance "3" // Using time(seconds) // - // Default: "3" // Minimum: "0.000000" // Maximum: "100.000000" L4D2_Grave_Respawn_Time "3" // Probability of turning into witch // - // Default: "50" // Minimum: "0.000000" // Maximum: "100.000000" L4D2_Grave_Witch_Percent "50" Changelog: Quote: 2024-05-28 (v1.3) * Plugin Release Attached Files grave_survivor_respawn.txt (1.2 KB) Get Plugin or Get Source (l4d2_graveKiller_v1.3CN.sp - 18.8 KB) Get Plugin or Get Source (l4d2_graveKiller_v1.3EN.sp - 18.7 KB) Wyświetl pełny artykuł
  7. Ostatni tydzień
  8. Description: This plugin aims to clamp the amount of common infected to the 'z_common_limit' without interfering with the AI director on default campaigns (or any campaign that doesn't force spawn common infected). It does this by giving an initial leniency, and if that leniency is passed then a short timer is started before checking if the amount of common infected is still above the `z_common_limit` threshold. It will delete the common infected above 'z_common_limit', and then keep deleting any common that spawns if the total common exceeds 'z_common_limit'. After enough time has passed that no common infected has been deleted, it will disable instant deletion of common infected. By Default: The leniency amount is 5 (30 + 5 = 35) before it creates a timer. The timer is 3.0 seconds, before instant deleting. The instant deleting disables after 5.0 seconds have elapsed without any deletions occurring. Features: sm_common_limit - Prints the current amount of common infected, max common infected, and leniency. Thanks: Silvershot - Initial plugin Addie - Helping on Discord Changelog: Code: 0.3 (25-May-2024) - Initial release.Reason: This plugin is heavily inspired by Silvers's plugin: [L4D & L4D2] Common Limiter and has a lot of similarities. Silver's plugin was a lifesaver for custom campaigns like Wormwood that could spawn infinite amount of common infected, causing the server to stutter and or become unresponsive. However, I noticed with his plugin that instantly removing common infected caused issues with the AI director on default (and other campaigns). If you are in a multi-floored building, or are around the corner filled with common infected, the common count is going to be max (30/30) since the room next is filled with all the naturally spawned common infected. However, if the AI director spawns a horde (which it does on timer intervals, based on difficulty), it will spawn slightly over the `z_common_limit` reaching up to 33 or 34. As it does this, it slowly overtime deletes common infected that are idle and not part of the horde it just spawned. Because of this AI director behavior, plugins that instantly delete common infected will cull the horde amount that spawns. Resulting in much weaker hordes than vanilla's director intended. Note(s): This plugin does not prevent custom campaigns from changing z_common_limit through ConVar.SetValue() or through director script options. This is also my first plugin. So hopefully there are no issues. I am running this on my public servers. Attached Files Get Plugin or Get Source (l4d2_max_common_spawn.sp - 4.4 KB) Wyświetl pełny artykuł
  9. Witam, sprzedam forum PsychoFrags.pl więcej info priv
  10. What does this plugin do? Adds left 4 dead to the game: - Exp/leveling system (I'm still working on skills, so that it makes sense to level up accounts). - Buying items in the shop. - Top 100 Exp and Level players (still upgrade it). - Save database your progress, why start over all our game progress? and for now that's all this plugin presents. ----------------------------------------------- How to install it on yours servers? 1.Copy file sql database to on your host or dedicated server Here link ->https://www.mediafire.com/file/z8es5...Stats.sql/file 2.Compile file l4d_exp_system.sp to smx or download smx (down link). 3.Configure your databases.cfg file put: name "l4dstats" and (driver, host, database, user, pass) on your mysql database server or.. download here databases.cfg and put in configs folder on your host/dedicated server -> https://www.mediafire.com/file/z5i2f...bases.cfg/file 4.run/play your game ----------------------------------------------- how to works in game? only just commands in chat-game: /top100exp - display top 100 experience players /top100level - display top 100 level players /shop - buy items in item shop /ss - show progress (level,exp) player ----------------------------------------------- Attached Files l4d_exp_system.smx (11.2 KB) Get Plugin or Get Source (l4d_exp_system.sp - 19.9 KB) Wyświetl pełny artykuł
  11. Hello. Is it possible to pause certain plugins from 9pm to 01am, for example? I would like to automatically disable some plugins at night and I haven't found anything on the forum. Thanks! Przeczytaj cały wpis
  12. dzieckeim to ty jestes ty kurwikleszczu (cenzura) w pizdeczke
  13. Naro

    Sprzedam licke IPS

    I w czym masz problem,że martwy? nikomu to nie przeszkadzą a pieniądze to chyba dziecko "uczące się" nie powinnno raczej obchodzić.
  14. czy ten twoj cs-harnas jest martwy i bedzie martwy? Jak tam tracenie pieniedzy na gowienko?
  15. Naro

    Sprzedam licke IPS

    Czy to twój najlepszy wyraz obrazy czy masz w zanadrzu coś jeszcze ambitniejszego?
  16. Naro

    Sprzedam licke IPS

    Czy masz jeszcze jakieś mądre uwagi do wyrzucenia, czy tylko tyle potrafisz?
  17. stary ci sie puszcza z harnasiem w rece
  18. Description:Place up to 30 slot machines on the map for players to play.Admin can type !sm to use the slot machine install menu.2 sp file for EN and CN language.I learned enum sturct and arraylist,so i did this project for practise...It took me about a month to complete this project.(I need work daytime:cry:) Feature list:Custom Models by me and Sounds (you may need download zip to watch them)Press E use.HP -1 each time used.Reward HP when 2 or 3 same Icons appear.Slot machine config file is saved in path "addons/sourcemod/data/slotmachines/"mapname".txt"Config will auto load when round start. Install:Download the zip and Unzip. Put the vpk file into the addons folder.Don't forget install the plugin. Media: Attachment 204429 Video: https://www.youtube.com/watch?v=Q4HqfW_maeM Reward list: 🍒 * 2: 1HP, * 3: 5HP 🍏 * 2: 2HP, * 3: 6HP 🍋 * 2: 3HP, * 3: 7HP 🍊 * 2: 4HP, * 3: 8HP 🍇 * 2: 5HP, * 3: 9HP ⭐ * 2: 6HP, * 3: 10HP 💎 * 2: 7HP, * 3: 11HP 7 * 2: 10HP, * 3: 20HP Changelog: Quote: 2024-05-24 (v1.2.1) * Plugin Release Attached Thumbnails Attached Files Get Plugin or Get Source (kzSMachine1.2.1CN.sp - 41.3 KB) Get Plugin or Get Source (kzSMachine1.2.1EN.sp - 40.0 KB) Model&Sound.zip (234.0 KB) Wyświetl pełny artykuł
  19. Hej, sprzedam aktywną licencją IPS 4.7 do września bieżącego roku. Warto dodać, że licencja nie posiada przypisanego adresu URL, także jest gotowa (bez dodatkowych opłat) do użycia. Cena: 330 PLN Discord: devvfck
  20. Naro

    Sprzedam licke IPS

    Czy to jest Twój standardowy poziom inteligentnych postów , czy postanowiłeś dzisiaj popisać się inwencją?
  21. stary ci sie puszcza z harnasiem w rece
  22. Naro

    Sprzedam licke IPS

    Czy to był Twój wymyślny plan na poprawienie mojego dnia, czy to po prostu Twoja standardowa forma komunikacji?
  23. gratulacje za iloraz inteligencji, o to twoj wskaznik: 0
  24. Wcześniejsza
  25. "bliski przyjaciel geta" zgaduje, że chodzi ci o geforce? sam pomysł żeby zamknąć sieć nie wyszedł z jego inicjatywy, dodatkowo jestem na 99% pewny, że do tej pory nie wie, że forum jest offline od dokładnie 13 kwietnia. nie tym razem panie wardęga 😛
  26. Hello! I wanna ask that does anyone know any type of Multi-Lingual advertiser or chat auto-responder? Like if the player has set their lang to "EN" it should show english advertisements, but if its something else, it should show that language's advertisements I would appreciate it! Przeczytaj cały wpis
  1. Pokaż więcej elementów aktywności
×
×
  • Dodaj nową pozycję...