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

MYGO.pl

RSSy
  • Postów

    28629
  • Dołączył

  • Ostatnia wizyta

    nigdy
  • Wygrane w rankingu

    11

Treść opublikowana przez MYGO.pl

  1. Hello everyone, well as the title says that there are commands or plugin so that they do not generate special while there is a live tank, since it is hard and powerful to kill, and when the tank dies it is new again to generate the specials, someone Could you help me? I would really appreciate it :):):llorar::llorar: Wyświetl pełny artykuł
  2. Description: It's extended and improved version of HxStats: Coop statistics with MySQL database. Basic differences & features: * L4D1 support * Integration with VIP Core by R1KO (optional). * Multi-threaded database (not freeze server anymore) * New stat points awards * Stat of week / month / VIP of week / month * Menu * ConVars * Useful commands * Natives * Translation * Many fixes Dependency: - (optional) VIP Core by R1KO Compatibility: - L4D1. - L4D2 - untested. Should work ok. Commands: Spoiler Root Admin commands: - sm_hx_sqlcreate - Creates database table in case automatic mode is failed (warning: all data will be erased !!!) - sm_hx_logpoints - Prints to log the list of top players of the last week and the last month - sm_hx_upgrade - Updates database table to the latest version - sm_hx_backup - Backups database table (by default, to `l4d2_stats_backup` table). Warning: old backup will be erased !!! - sm_hx_revert - Revert a database from a backup. Warning: current database table will be lost !!! - sm_hx_showpoints - sm_hx_showpoints <#userid|name|steamid> - show points of specified player (including offline, if steamid provided) - sm_hx_movepoints - sm_hx_movepoints <steamid of source> <steamid of destination> - move points to another account (useful, if steam id is changed) User commands: - sm_stat - HX Statistics main menu - sm_rank - Show my rank and all my stats - sm_top - Show top players of all the time - sm_top10 - same as sm_top Settings (ConVars): Spoiler l4d_hxstat_callvote_rank - Minimum rank to allow using the vote l4d_hxstat_idle_rank - Minimum rank to allow using !idle l4d_hxstat_use_colors - Change player's color according to his rank (0 - No, 1 - Yes) l4d_hxstat_rank_call_interval - Minimum interval (in sec.) to allow calling !top again l4d_hxstat_print_points - Print points in chat when you kill infected? (0 - No, 1 - Yes) l4d_hxstat_rank_onstart - Show rank on round start? (0 - No, 1 - Yes) l4d_hxstat_rank_delay - Delay (in sec.) on round start to show player's rank l4d_hxstat_points_boomer - How many points to give for killing the boomer l4d_hxstat_points_charger - How many points to give for killing the charger l4d_hxstat_points_hunter - How many points to give for killing the hunter l4d_hxstat_points_jockey - How many points to give for killing the jockey l4d_hxstat_points_smoker - How many points to give for killing the smoker l4d_hxstat_points_spitter - How many points to give for killing the spitter l4d_hxstat_points_tank - How many points to give for final tank shoot l4d_hxstat_points_witch - How many points to give for killing the witch l4d_hxstat_commons_kill - How many common zombies to kill to give points (for each piece)? (0 - to disable) l4d_hxstat_points_infected - How many points to give for killing X common zombies l4d_hxstat_time_play - How much time to play (in minutes) to give points (for each time interval)? (0 - to disable) l4d_hxstat_points_time - How many points to give for X minutes spent in game l4d_hxstat_menu_name - Name of statistics menu in !stat command l4d_hxstat_limit_top_all - How many players to show in global top l4d_hxstat_limit_top_week - How many players to show in top of week l4d_hxstat_limit_top_month - How many players to show in top of month l4d_hxstat_limit_top_week_vip - How many players to award in top of week (and to show in top of last week) l4d_hxstat_limit_top_month_vip - How many players to award in top of month (and to show in top of last month) l4d_hxstat_award_top_week_vip - How many days of VIP to award player with (in winning top of week) (0 - to disable) l4d_hxstat_award_top_month_vip - How many days of VIP to award player with (in winning top of month) (0 - to disable) l4d_hxstat_firstday - First day of the week (0 - Sunday, 1 - Monday) Natives: Spoiler HX_AddPoints - Give points to client. HX_GetPoints - Retrieve a number of client points. see hx_stats.inc file for details. Using (Installation): Spoiler 1. If you are using VIP Core, edit source code l4d2_hx_stats.sp: Code: #define VIP_GROUP "Black VIP"Place here the name of your VIP group (note: you can find it in file - data/vip/cfg/groups.ini): 2. If you have some basic menu on your server, edit source code l4d2_hx_stats.sp: Code: #define BASE_MENU "sm_menu"place here command to open that menu. It is required for "Back" button. 3. Compile the plugin (l4d2_hx_stats.sp), then: - place l4d2_hx_stats.smx to addons/sourcemod/plugins - place hx_stats.phrases.txt to addons/sourcemod/translations If you already had HxStats ver. 1.0 by maks (or previous ver. of my fork) on the server: - execute sm_hx_upgrade in console and restart the map. otherwise: 4. Edit addons/sourcemod/configs/databases.cfg by adding: Code: "l4d2_stats" { "driver" "mysql" "host" "your_host" "database" "your_db" "user" "your_user" "pass" "your_pass" }replace fields with information about your external MySQL connection. Contact to your hoster tech support for details. 5. Restart the map twice. Basic installation finished. If you need to see statistics on your site: - go to Web-Site/l4d1_stats_web (or l4d2_stats_web) folder depending on L4D1 or L4D2, find .../system/hx_config.php and populate: Code: $aDB['server'] = 'localhost'; $aDB['username'] = 'your_user'; $aDB['passwd'] = 'your_pass'; $aDB['dbname'] = 'your_db';with your MySQL connection info. Upload folder to your site, and open index.php in browser. Credits:* maks - original author Related topics:L4D2 HxStats Languages: - English - Russian ChangeLog 1.0.3 (01-Dec-2019) - Added "sm_hx_showpoints" to view points of specific player by name / userid / steamid. - Added "sm_hx_movepoints" to move points to another account (useful, if steam id is changed). - "sm_topweek" renamed to "sm_hx_logpoints" and include top of last week and last month. - Added auto-reconnect to database (max 20 attempts each 3 sec.) in case initial connection cannot be established for some reason. 1.0.2 (29-Nov-2019) - Added integration with VIP Core by R1KO (added new ConVars). - Finished functionality on shifting stats: week -> last week, month -> last month. - Added ability to dump top of week to log, e.g. for your news site (sm_topweek). - Added place of player. - Added "HX_GetPoints" native. - Added "sm_hx_upgrade" command to upgrade database table version. - Added "sm_hx_backup" command to make a backup just in case. - "sm_addsqlcreate" renamed to "sm_hx_sqlcreate" and now is not required while installation (leave just in case). - All SQL queries are now Multi-threaded and no more spike the server. - Statistics is now correctly re-loaded on plugin late load. - Fixed: statistics is not saved when map is forcibly changed (by vote). - User name escaping algorithm is replaced by SQL_EscapeString to be less false positive. - Prevented counting game time points for !afk clients. - Fixed "l4d_hxstat_points_time" ConVar is not worked. * DataBase Table version is now 2.1. Use "sm_hx_upgrade" to upgrade. 1.0.1 (16-Nov-2019) - Added L4D1 support - added convars to choose min rank for blocking callvote and idle - added convar to enable/disable coloring players by stat - added convar to control min. interval allowed to call !top again - Added convars for adjusting points of each type of killed infected, separately options for: 1. Killing 50 common, 2. Spent 30 minutes in game. - Added convar for disabling printing the points in chat - Added convars to choose whether you want to show player's rank on round start and delay - Added !stat command to open main menu - Added top of month / top of week (including previous month / week). - Added menu with points description - Added translation support - Added translation into Russian - Added library "hx_stats" registration - Added native "HX_AddPoints" for developers - client id replaced by UserId in timers - Some code and SQL optimizations. - Added protection and walkaround if Steam background is not responding - !rank total score is now calculated more accurately - Fixed empty name in database when new player connected - Fixed bug when stats are not saved at all on player disconnect when none commons are killed PHP update: - Added L4d1 version of html/php scripts - links are opened in the same window now * DataBase Table version is now 2.0. Attached Files hx_stats.zip (69.0 KB) Wyświetl pełny artykuł
  3. [L4D1 AND L4D2] Tank Lightning Description: The plugin is based on the original Witch Lightning Attack Idea by Panxiaohai. This plugin gives to Tank the probability in Spawn a chance to create laser-guided attacks on survivors, when the tank throws a rock it has a time frame to defend itself and this plugin is good for those time lapses in which the tank cannot defend itself, or for example in L4D1 in many cases the tank is blocked by players when it goes up a wall, and this plugins is good for that lapses of time (the plugin works if the Tank is blocked or not, acording to chance of gives the ability in spawn). The plugin have laser beam range configuration and a range of damage that can cause to survors. The laser is print to acording the color Tank, if the Tank have no colors the laser will be print normal (white) Convars: PHP Code: // Probability that the Tank gets the electric arc damage ability in spawn. // If the value is 0 = Plugin Disabled. // - // Default: "30.0" // Minimum: "0.000000" // Maximum: "100.000000" l4d_tank_lightning_chance "30.0" // Maximum damage per attack. // - // Default: "10.0" // Minimum: "0.000000" // Maximum: "100.000000" l4d_tank_lightning_damage_max "10.0" // Miinimum damage per attack. // - // Default: "3.0" // Minimum: "0.000000" // Maximum: "100.000000" l4d_tank_lightning_damage_min "3.0" // Maximum attack range. // - // Default: "300.0" // Minimum: "0.000000" // Maximum: "1000.000000" l4d_tank_lightning_range_max "300.0" // Miinimum attack range. // - // Default: "100.0" // Minimum: "0.000000" // Maximum: "1000.000000" l4d_tank_lightning_range_min "100.0" Installation: 1 - Click "Get Plugin" and put the l4d_tank_lightning.smx file into your server or game \addons\sourcemod\plugins\ folder. 2 - (Only for L4D1) Required vmt for full visual lighting effect: https://forums.alliedmods.net/showpo...4&postcount=58 (by Dragokas) 3 - (Only for L4D1) Installation of particles for the server and client. Open the .Rar file that was previously downloaded and copy the files: bendibeam.vmt and bendibeam.vft in the following path: left4dead\materials\particle \ folder Attached Files Get Plugin or Get Source (l4d_tank_lightning.sp - 13.5 KB) Wyświetl pełny artykuł
  4. Plugin Requirements This plugin requires my Ready Up (maintenance mode+) plugin to function; Ready Up is accompanied by its own API, making development of specific plugins easier! You can download Ready Up from https://forums.alliedmods.net/showthread.php?p=2674703 Configuring Player Plus Locate the /configs/readyup/readyup.cfg config file and edit it. Scroll down to the following key values and set them appropriately. Code: "max survivors?" "10" "min survivors?" "4" Unlike plugins like Super Versus, you can set a minimum number of Survivors that must exist at all times - the plugin will generate bots that make the difference up for human players. You can also set a maximum survivor count - this sets a maximum player count for both humans and bots on the survivor team. If no bots currently exist for a new player that's joining, a bot will be generated on the spot for the player. If the number of players exceeds the minimum survivors, when a survivor quits the server or changes team, their survivor bot will be removed from the game. Attached Files rum_playerplus2.zip (16.1 KB) Wyświetl pełny artykuł
  5. This thread has all the info you need about this plugin Download updater here Note that I couldn't get to test this plugin, but gamedata updates tend to require shutting down your server and getting it back up, an action achievable by writing in console: sm_rcon _restart Yes, with the "_" Attached Files Get Plugin or Get Source (changeweaponspeeds.sp - 10.7 KB) Wyświetl pełny artykuł
  6. 1.0 - Release. Attached Files Get Plugin or Get Source (autoteam_block.sp - 337 Bytes) autoteam_block.smx (2.7 KB) Wyświetl pełny artykuł
  7. ADVANCED VIP PLUGIN Hello, i made this plugin while ago, it was Polish plugin so i decided to translate it and post it here as well so maybe someone can use it. Commands:!vips: Opens a menu with the list of vip players on the server (You can disable it in the configuration file) !vipsay <message>: Vip player can write HUD messages on the server (You can disable it in the configuration file) Features: ALL OF THOSE FEATURES CAN BE CONFIGURED VIA CVARS VIP welcome message on chat Vip leave message on chat Vip can write hud messages You can configure VIP's starting HP and the MAX HP he can reach. Amount of money VIP receives for killing/headshot/bomb planting/bomb defusing/Knife kill etc You can increase movment speed for VIP Player You can give free armor and helmet for VIP player, also you can set the armor value. You can change gravity for VIP player. Free grenades for VIP (HE,FLASH,SMOKE,TA,HEAL,INC) Tag in the scoreboard [VIP] Double Jump for VIP players FREE Guns and Pistols menu from 3rd round by default Changelog: Spoiler ~ Version "0.1" >> First release. ~ Version "0.2" >> New Syntax Rewrite. ~ Version "0.3" >> Fixed events. ~ Version "0.4" >> Added cvars. ~ Version "0.5" >> More Cvars + More fixes. ~ Version "0.6" >> Fixed an error when the gun menu was showing on the 1st round (HalfTime). ~ Version "0.7" >> Fixed RoundEnd Events. ~ Version "0.8" >> Added welcome and leave message for vip. // USUNIĘTE ~ Version "0.9" >> Added [VIP] tag in the cvar. ~ Version "1.0" >> Added cvar for doublejump. ~ Version "1.1" >> Added new cvars and fixed doublejump. ~ Version "1.2" >> Grenades are not respawning 2 times at the new round. ~ Version "1.3" >> Removed useless free vip from x to x hour. ~ Version "1.4" >> A lot of new features and fixes. ~ Version "1.5" >> Fixes ~ Version "1.6" >> Removed useless translations and added English language for allied lads. Configuration of the GUNS AND PISTOLS: Just simply edit the menus and add the guns you want. I will add the configuration file for it if i find a time to do that query. Spoiler Languages: English Polish (PM Me Via Steam) Steam link: https://steamcommunity.com/id/mesharskyh2k/ Installation Notes: Upload files to the root directory of your server. Edit cfg/sourcemod/H2K_Vip_configuration.cfg to edit all the cvars and configurations Configuration file should be generated by it self after a map restart or server restart. Configuration file should be generated by it self after a map restart or server restart.Configuration file should be generated by it self after a map restart or server restart. Default flag for vip is "o" Coded with ❤ for Rias Gremory Enjoy :bacon!::bacon!::bacon!: PS: I also included the compiler and include files so you don't need to spend ages to find them or waste my time because you can't compile the plugin :) Attached Files Vip by Mesharsky[1.6].zip (636.9 KB) Get Plugin or Get Source (H2K_VipENG.sp - 22.7 KB) Wyświetl pełny artykuł
  8. Hey, anyone got a link or a plugin for "amx_ss" ? If yes, can u send it to me? And also teach me how to add the plugin, because I am very bad at it. Wyświetl pełny artykuł
  9. Hi, some of the players on my server always get kicked by the reason "file [GAME]\pak01_001.vpk does not match the server's file" i dont know why maybe some kind of plugin that does it? Its only some players, and its not about ram og hhd/ssd problems... https://support.steampowered.com/kb_...8285-YOAZ-6049 Wyświetl pełny artykuł
  10. Description:Show days (including hours, minutes, seconds) elapsed to the New Year Note: this plugin is client's local time aware. Read requirements carefully! Settings (ConVars): - "sm_newyear_days_delay" - def.: 17 - How many seconds to wait to display message after trigger raised - "sm_newyear_days_onjoin" - def.: 1 - Show message on client join first time (1 - Yes, 0 - No) - "sm_newyear_days_onroundstart" - def.: 0 - Show message on round start (1 - Yes, 0 - No) // Left 4 dead only: - "sm_newyear_days_onfinalewin" - def.: 1 - Show message when team wins the finale (1 - Yes, 0 - No) Requirements: - GeoIP v2 by Accelerator https://forums.alliedmods.net/showthread.php?t=311477 - TimeZone API by Accelerator https://forums.alliedmods.net/showthread.php?t=311533 Warning: after installing GeoIP v2, you should recompile ALL plugins that used original geoip include, otherwise you'll receive very unusual server behaviour. Installation: - Follow above requirements - copy l4d_DaysToNewYear.smx to addons/sourcemod/plugins - copy days_to_new_year.phrases.txt to addons/sourcemod/translations Attached Files Get Plugin or Get Source (l4d_DaysToNewYear.sp - 6.3 KB) days_to_new_year.phrases.txt (237 Bytes) Wyświetl pełny artykuł
  11. Description: Players can request to extend the current map time. Only tested for CS:GO. Commands: Code: sm_veConVars: Code: sm_cmd_extend_time 10 // With how many minutes can be extended the current map? sm_cmd_extend_limit 1 // How many times players can extend the current map? (0 - ignore) sm_cmd_extend_delay 10 // After how many minutes players can request to extend the map again? sm_cmd_extend_current_round 0 // Extend the current round as well? (for deathmatch servers)GitHub: https://github.com/Ilusion9/sm-csgo-vote-extend-time Wyświetl pełny artykuł
  12. Related Plugins:[L4D & L4D2] Christmas Tree WeaponHandling_API Thanks:Lux for the WeaponHandling_API plugin and reward suggestion. About:It's holiday time and servers are spawning Valves Christmas gifts, but they have no reward... This rewards players when picking up gifts: Health: Restores full health. Ammo: Refills full ammo. Speed: Increases shooting and reloading speed. Requires the WeaponHandling_API plugin. Rewards are chance based using a weighted selection. Only one will trigger per gift. Note: game cvar "z_holiday_gift_drop_chance". Gifts expire after 30 seconds. Game default. Admin Commands: (requires "z" flag) PHP Code: sm_gift // Spawns a gift at where you're looking. sm_gifter // Gives yourself a reward. For testing. CVars: Saved to l4d2_gift_rewards.cfg in your servers \cfg\sourcemod\ folder. PHP Code: // 0=Plugin off, 1=Plugin on. l4d2_gift_rewards_allow "1" // Chance to completely refill a players ammo. l4d2_gift_rewards_chance_ammo "100" // Chance to restore a players health to full. l4d2_gift_rewards_chance_heal "100" // Chance to reward increased speed for: shooting, reloading and deploying. Requires WeaponHandling API plugin. l4d2_gift_rewards_chance_speed "100" // 0.0=Off. Reduces the size of gifts over this many seconds. l4d2_gift_rewards_size "20.0" // Duration the increased speed affects a player. l4d2_gift_rewards_speed "20.0" // Turn on the plugin in these game modes, separate by commas (no spaces). (Empty = all). l4d2_gift_rewards_modes "" // Turn off the plugin in these game modes, separate by commas (no spaces). (Empty = none). l4d2_gift_rewards_modes_off "" // Turn on the plugin in these game modes. 0=All, 1=Coop, 2=Survival, 4=Versus, 8=Scavenge. Add numbers together. l4d2_gift_rewards_modes_tog "0" // Gift Rewards plugin version. l4d2_gift_rewards_version Changes: Code: 1.0 (03-Dec-2019) - Initial release. Optional PluginWeapon speed features require the WeaponHandling_API plugin. InstallationClick "Get Plugin" and put the .smx file into your servers \addons\sourcemod\plugins\ folder. Optionally download "l4d2_gift_rewards.txt" and save to your servers \addons\sourcemod\gamedata\ folder. This is for the sm_gift command. Attached Files Get Plugin or Get Source (l4d2_gift_rewards.sp - 17.5 KB) l4d2_gift_rewards.txt (638 Bytes) Wyświetl pełny artykuł
  13. hey i am looking for retake gun menu like this ? ? T Weapons CT Weapons Wyświetl pełny artykuł
  14. it gives me this error L 12/02/2019 - 02:29:23: [SM] Exception reported: [SURF] Unable to connect to database (Configuration "cksurf" not found) L 12/02/2019 - 02:29:23: [SM] Blaming: ckSurf.smx L 12/02/2019 - 02:29:23: [SM] Call stack trace: L 12/02/2019 - 02:29:23: [SM] [0] SetFailState L 12/02/2019 - 02:29:23: [SM] [1] Line 157, csgo/addons/sourcemod/scripting/ckSurf/sql.sp::db_setupDatabase L 12/02/2019 - 02:29:23: [SM] [2] Line 1894, csgo/addons/sourcemod/scripting/ckSurf.sp::OnPluginStart L 12/02/2019 - 02:29:23: [SM] Unable to load plugin "ckSurf.smx": Error detected in plugin startup (see error logs) L 12/02/2019 - 02:29:23: [SM] Unable to load plugin "discord_api.smx": Required extension "SteamWorks" file("SteamWorks.ext") not running L 12/02/2019 - 02:29:23: [SM] Unable to load plugin "surftimer.smx": Native "json_array_append_new" was not found Wyświetl pełny artykuł
  15. About:Modern version of [L4D2] Bacteria Sounds from AtomicStryker. Thanks to paul92 - For the request. This patches the game and unlocks it for all gamemodes. CVars: Saved to l4d2_bacteria.cfg in your servers \cfg\sourcemod\ folder. PHP Code: l4d2_bacteria_allow "1" // 0=Plugin off, 1=Plugin on. l4d2_bacteria_ver // Bacteria Sounds plugin version. Changes: Code: 1.0 (01-Dec-2019) - Initial release. InstallationClick "Get Plugin" and put the .smx file into your servers \addons\sourcemod\plugins\ folder. Download the .txt gamedata file and put into your servers \addons\sourcemod\gamedata\ folder. Attached Files Get Plugin or Get Source (l4d2_bacteria.sp - 5.0 KB) l4d2_bacteria.txt (877 Bytes) Wyświetl pełny artykuł
  16. MYGO.pl

    unapprove

    please unapprove.. thread failed to post the plugins data section due to duplicate cvar, which also prevents changing compiler version etc. Wyświetl pełny artykuł
  17. About:This completely unvomits someone with options of adding back the glow (L4D2 only) and chase goal to attract infected. Player model doesn't retain the bile visual effects overlay. Is it possible? I'm guessing it's client side only. Admin Commands: (requires "z" flag) PHP Code: sm_vomit // Cover in bile. Usage: sm_vomit [#userid|name]. No args = target self. sm_unvomit // Remove effect. Usage: sm_unvomit [#userid|name]. No args = target self. Cvars: Saved to l4d_unvomit.cfg in your servers \cfg\sourcemod\ folder. PHP Code: // 0=Plugin off, 1=Plugin on. l4d_unvomit_allow "1" // 0=Off. 1=Attach a info_goal_infected_chase to players for common infected to chase them. l4d_unvomit_chase "1" // Duration of the effect (game default: 20). How long to keep the chase and glow enabled. l4d_unvomit_duration "20" // 0=Off. L4D2 only: glow outline on players until vomit reset time. Three values between 0-255 separated by spaces. RGB: Red Green Blue. l4d_unvomit_glow_color "255 100 0" // 0=Off. L4D2 only: glow outline in Versus gamemode. l4d_unvomit_glow_versus "201 18 184" // Turn on the plugin in these game modes, separate by commas (no spaces). (Empty = all). l4d_unvomit_modes "" // Turn off the plugin in these game modes, separate by commas (no spaces). (Empty = none). l4d_unvomit_modes_off "" // Turn on the plugin in these game modes. 0=All, 1=Coop, 2=Survival, 4=Versus, 8=Scavenge. Add numbers together. l4d_unvomit_modes_tog "0" // Tongue Damage plugin version. l4d_tongue_damage_version Changes: Code: 1.1 (01-Dec-2019) - Added new features and cvars, made into a full plugin for release. 1.0 (20-May-2012) - Initial release. Installation:Click "Get Plugin" and put the .smx file into your servers \addons\sourcemod\plugins\ folder. Download the .txt gamedata file and put into your servers \addons\sourcemod\gamedata\ folder. Attached Files l4d_unvomit.txt (2.1 KB) Get Plugin or Get Source (l4d_unvomit.sp - 13.6 KB) Wyświetl pełny artykuł
  18. About:Thanks to "XJR15" for the request. Only required for L4D2. By default the game only deals bonus Hunter Pounce damage in Versus games. This unlocks it for all gamemodes and bots. To change the pounce range use [L4D2] Pounce Damage Uncap extension. Latest version found here. CVars: Saved to l4d2_pounce_damage.cfg in your servers \cfg\sourcemod\ folder. PHP Code: l4d2_pounce_damage_allow "1" // 0=Plugin off, 1=Plugin on. l4d2_pounce_damage_version // Hunter Pounce Damage plugin version. Changes: Code: 1.0 (01-Dec-2019) - Initial release. InstallationClick "Get Plugin" and put the .smx file into your servers \addons\sourcemod\plugins\ folder. Download the .txt gamedata file and put into your servers \addons\sourcemod\gamedata\ folder. Attached Files l4d2_pounce_damage.txt (1.1 KB) Get Plugin or Get Source (l4d2_pounce_damage.sp - 5.2 KB) Wyświetl pełny artykuł
  19. About:Modern version of [L4D & L4D2] God Frames be Gone from AtomicStryker. Players will instantly take damage instead of being dealt damage after a delay like the old plugin. Removes the IsVulnerable function to stop god frames. Recommended plugin: Spitter Acid Damage to reduce the amount of goo damage. Plugin #100 Thanks:Lux - For the patch method suggestion. paul92 - For the request and testing. Cvars: Saved to l4d_god_frames.cfg in your servers \cfg\sourcemod\ folder. PHP Code: // 0=Plugin off, 1=Plugin on. l4d_god_frames_allow "1" // Turn on the plugin in these game modes, separate by commas (no spaces). (Empty = all). l4d_god_frames_modes "" // Turn off the plugin in these game modes, separate by commas (no spaces). (Empty = none). l4d_god_frames_modes_off "" // Turn on the plugin in these game modes. 0=All, 1=Coop, 2=Survival, 4=Versus, 8=Scavenge. Add numbers together. l4d_god_frames_modes_tog "0" // God Frames Patch plugin version. l4d_god_frames_version Changes: Code: 1.0 (01-Dec-2019) - Initial release. Installation:Click "Get Plugin" and put the .smx file into your servers \addons\sourcemod\plugins\ folder. Download the .txt gamedata file and put into your servers \addons\sourcemod\gamedata\ folder. Attached Files l4d_god_frames.txt (1.2 KB) Get Plugin or Get Source (l4d_god_frames.sp - 7.6 KB) Wyświetl pełny artykuł
  20. Hello I want to ask if exist any working jailbreak plugin which works without any lags or bugs. I am looking for plugin like this: CT MENU: „/menu“ 1. Choose Weapon 2. Choose Skin (Models) VIP 3. VIP Stuff 4. Third Person View 5. Do not show menu again WARDEN MENU: „/warden“ 1. Prisoners color 2. Control cells 3. Events 4. Microphones (ON/OFF) 5. Football 6. Other: • 1. Builder • 2. NOBLOCK/BLOCK • 3. Cube (Random numbers 1 or 2) • 4. fill HP • 6. Questions • 7. Timer PRISONER MENU: "/menu" If there is someone who could help me with that please comment down under this topic. Thank you. Wyświetl pełny artykuł
  21. Description Now the tank can't easily be killed just sitting on the stairs You can also manually fix custom maps just add the coordinates of the trigger and the coordinates where the tank should go and the plugin will do the rest. I have already added fixes to some standard maps Config path : sourcemod/data/maps_ladders.cfg Attached Files maps_ladders.cfg (1.0 KB) Get Plugin or Get Source (l4d2_tank_ladder_fix.sp - 5.2 KB) Wyświetl pełny artykuł
  22. Description Yes this is exactly what you thought this plugin will fix a bug when infected could stun only 1 direction also this plugin will fix a lot of other bugs when infected did not work stun It was tested only on windows The hardest plugin I've done P. S the Plugin does not fix what this plugin does Attached Files Get Plugin or Get Source (l4d2_shove_fix.sp - 2.0 KB) l4d2_shove_fix.txt (227 Bytes) Wyświetl pełny artykuł
  23. Description: Agents chooser plugin with multiple features and improvements. Feature list: -Menu for CT and TT and depending your choice you will see only agents for CT or TT. -Selection saved. -Apply agents models instantly. -Cvar for prevent that agents models overwritte custom models of others plugins. -A good menu interface when you can navigate between menus easily. -Much more soon! Cvars: Put in server.cfg Code: sm_csgoagents_timer "0.2" // Time on Spawn for apply agent skins sm_csgoagents_nooverwrittecustom "1" // No apply agent model if the user already have a custom model. 1 = no apply when custom model, 0 = disable this feature Commands: Code: !agents - Open the main menu Root Commands: Code: !agents_generatemodels - Generate a cfg file with all the agents models for use in a skinchooser plugin. !agents_generatestoremodels - Generate a cfg file with all the agents models for use in a store plugin. Todo list: -Add multilanguage support. -Add a cvar for prevent that custom models override agents models. -Zombiereloaded support. Download: Main repository Direct download Code changes Note: I know that already exist a agents plugin in a external website but this is a new version made from scratch by me with multiple improvements and changes and I want to give it support actively here in the forum. I will ignore offtopic comments and remember that do offtopic in a plugin thread is not allowed and your comment could be deleted and sanctioned, thanks and enjoy. Wyświetl pełny artykuł
  24. SM:SIMPLE WHISTLE Description -------------------------------- Terrorists can press their USE key to play an ambient whistle sound every few seconds, time can be changed at the top of the plugin source!(will add cvar in the next update). NOTE: This plugin isn't particularly new, just something I wanted to release to the public! Requirements -------------------------------- SourceMod latest stable Player Commands -------------------------------- None, press your USE(default E) key to whistle Plugin Cvars -------------------------------- None, coming soon! Attached Files Whistle.zip (26.2 KB) Get Plugin or Get Source (whistle.sp - 1.9 KB) Wyświetl pełny artykuł
  25. Description: Force to use default players models for people that have a agent model. Requeriments: DHooks Download: Main repository Direct download Code changes Wyświetl pełny artykuł
×
×
  • Dodaj nową pozycję...