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

    28654
  • Dołączył

  • Ostatnia wizyta

    nigdy
  • Wygrane w rankingu

    11

Treść opublikowana przez MYGO.pl

  1. MYGO.pl

    respawn plugin

    I need a good auto respawn plugin which will respawn player when they're dead and also respawn newly connected players. which won't respawn spec players Przeczytaj cały wpis
  2. Fixes an exploit that allows players to become invisible and invincible while as heavy. This plugin checks if a player has the flag FL_TRANSRAGDOLL 5 seconds after spawning. If the player has that flag, it will then check again in two seconds (just in case the player wasn't exploiting) and then apply 1000 dmg. The exploit can be seen here: https://www.youtube.com/watch?v=3tz9qL-yWzo This plugin is just drag and drop, there are no convars or anything that needs to be configured. Attached Files Get Plugin or Get Source (heavy_exploit.sp - 1.4 KB) Wyświetl pełny artykuł
  3. Description: change the model of the pipe bomb :) Compatibility: - L4D1. - L4D2. Attached Files Get Plugin or Get Source ([L4D & L4D2] Random Pipe Bomb.sp - 1.9 KB) Wyświetl pełny artykuł
  4. MYGO.pl

    Anti-Camp

    I know there are many On my server we use Bad Camper https://forums.alliedmods.net/showth...ght=bad+camper However, this plugin gets confused on some maps about who has the objective. de_buzzkill is one of the maps and it is a popular map I would like a modification of this plugin that ONLY CHECK the TERRORIST TEAM. We only have DE maps on our server Przeczytaj cały wpis
  5. Spawn specials without being limited by the director's enforced rule of only-3-in-play! I've really worked more than on my older plugins on finding the signatures to make this possible. Plus I've exhausted my coding juice, so it's only one simple but spammable command. Sorry. -= Tested Games =- L4D2 -= Commands =- sm_dzspawn <zombie> <mode> = Spawn a special infected, bypassing the limit enforced by the game. Example: sm_dzspawn hunter. For <mode>, it toggles whether not to use a (simple) trace. If 1, the trace won't be used, and instead the infected will spawn at your location. Code: NOTICE: Non-playable infected aren't able to be spawned by sm_dzspawn yet. This is because they're already spammable by default. (Common infected and witches.) You can get another plugin to spawn the aforementioned non-playable infected.-= Further Info =- - The spawned specials don't play their sounds when they normally initially spawn. (Example: Hunter's initial growl. If spawned with this cmd, the Hunter won't emit any sound and be completely silent if it decides to stand there.) -= Releases =- Code: Version 1.0.0 - Initial release.-= How to Install =- - (OPTIONAL) Move the .txt file to your gamedata folder inside the Sourcemod directory. The plugin, by itself, will auto-generate the gamedata needed if it doesn't find one, hence this being optional. - Move the compiled .smx file to your plugins folder inside the Sourcemod directory. Attached Files spawn_infected_nolimit.txt (3.1 KB) Get Plugin or Get Source (spawn_infected_nolimit.sp - 21.7 KB) Wyświetl pełny artykuł
  6. MYGO.pl

    Female skin

    Can some give female skin plugin? If some girl join in my server, i will give female skin??/ Przeczytaj cały wpis
  7. MYGO.pl

    spawn create

    I need a plugin which can create extra spawn points, some of maps have only 12 spawns but I want to extend it to 32 spawns. Przeczytaj cały wpis
  8. Hello ! I also asked you to help me with this plugin ... I saw on other servers that when you plant the bomb the model dances ... to this plugin that I only dance when you do broadcast ... Please if you can dance from the moment the bomb is planted. Thank you very much! Code: #include <amxmodx> #include <fakemeta> #define PLUGIN "Erotic Bomb" #define VERSION "0.4" #define AUTHOR "8dp & Spection" #define EROTIC_BOMB_W "models/erotic_bomb/erotic_bomb.mdl" #define m_flNextBeep 102 #define m_flNextBlink 106 #define m_bIsC4 385 /*=============================================================================================================*/ #define DEFUSE_ANIMATION_START // Анимация танца начинается при разминировании //#define BEEP_SOUND // Звуки бомбы #define CUSTOM_SOUND "erotic_bomb/erotic_bomb.wav" // Кастомная музыка /*=============================================================================================================*/ new g_iBomb, g_iSequence #if defined DEFUSE_ANIMATION_START public Event_BombDefusing() { if(pev(g_iBomb, pev_sequence)) return if(++g_iSequence == 4) g_iSequence = 1 set_pev(g_iBomb, pev_frame, 0.0) set_pev(g_iBomb, pev_animtime, get_gametime()) set_pev(g_iBomb, pev_sequence, g_iSequence) } #endif bool:get_pdata_boolc(ent, charbased_offset, intbase_linuxdiff = 5) return !!( get_pdata_int(ent, charbased_offset / 4, intbase_linuxdiff) & (0xFF<<((charbased_offset % 4) * 8)) ) public Event_BombPlanted() { g_iBomb = FM_NULLENT while((g_iBomb = engfunc(EngFunc_FindEntityByString, g_iBomb, "classname", "grenade"))) { if(pev_valid(g_iBomb) && get_pdata_boolc(g_iBomb, m_bIsC4)) { Setup_Bomb() return } } } Setup_Bomb() { engfunc(EngFunc_SetModel, g_iBomb, EROTIC_BOMB_W) #if !defined DEFUSE_ANIMATION_START if(++g_iSequence == 4) g_iSequence = 1 set_pev(g_iBomb, pev_sequence, g_iSequence) #endif set_pev(g_iBomb, pev_frame, 0.0) set_pev(g_iBomb, pev_animtime, get_gametime()) set_pev(g_iBomb, pev_framerate, 1.0) set_pdata_float(g_iBomb, m_flNextBlink, get_gametime() + 9999.9) #if !defined BEEP_SOUND set_pdata_float(g_iBomb, m_flNextBeep, get_gametime() + 9999.9) #endif #if defined CUSTOM_SOUND emit_sound(g_iBomb, CHAN_STATIC, CUSTOM_SOUND, VOL_NORM, ATTN_NORM, 0, PITCH_NORM) #endif } public plugin_precache() { engfunc(EngFunc_PrecacheModel, EROTIC_BOMB_W) #if defined CUSTOM_SOUND engfunc(EngFunc_PrecacheSound, CUSTOM_SOUND) #endif } public plugin_init() { register_plugin(PLUGIN, VERSION, AUTHOR) #if defined CUSTOM_SOUND register_logevent("Stop_BombSound", 2, "1=Round_End") register_event("HLTV", "Stop_BombSound", "a", "1=0", "2=0") #endif #if defined DEFUSE_ANIMATION_START register_event("BarTime", "Event_BombDefusing", "be", "1=5", "1=10") #endif register_logevent("Event_BombPlanted", 3, "2=Planted_The_Bomb") } #if defined CUSTOM_SOUND public Stop_BombSound() { if(g_iBomb) { emit_sound(g_iBomb, CHAN_STATIC, CUSTOM_SOUND, VOL_NORM, ATTN_NORM, SND_STOP, PITCH_NORM) g_iBomb = 0 } } #endif Przeczytaj cały wpis
  9. Simple plugin to prevent an exploit of using Engineers and Heavy This simply denies respawning when changing classes from a Engineer to a Heavy. Attached Files Get Plugin or Get Source (anti-inviswrench.sp - 841 Bytes) Wyświetl pełny artykuł
  10. Hey, i need a plugin which give admins with those flags a bonus per kill. Flags and bonus per kill : "abcdefghijkmnopqrsu" ========= "100 HP + 100 AP + 10000$ per kill" "bcdefimjpt" ================ "80 HP + 80 AP + 8000$ per kill" "bcdefimjpr" ================ "70 HP + 70 AP + 7000$ per kill" "bcdefimjpo" ================ "60 HP + 60 AP + 6000$ per kill" "bcdefimnjp" ================ "25 HP + 25 AP + 1200$ per kill" "bcdefimnj" ================= "40 HP + 40 AP + 4000$ per kill" "bceinj" =================== "40 HP + 40 AP + 4000$ per kill" "bn" ===================== "40 HP + 40 AP + 4000$ per kill" thanks in advance :) Przeczytaj cały wpis
  11. Beam has been around the HnS scene for a long time, it was always seen as a prestigious plugin, if a server had it, it was a good server. This is build made by me and zwolof a while ago, I cleaned it up and commented out some functions that are no longer used. Command Code: sm_beam - Opens the beam menuFound a bug? Report it! Github repo: https://github.com/amuDev/HnSBeam/ Attached Files Get Plugin or Get Source (beam.sp - 15.2 KB) Wyświetl pełny artykuł
  12. IntroAs the survivors are by default almost useless if they are incapped, I wanted to publish this plugin to dispense that, and in addition to giving a somewhat simpler alternative, to manage to use all their weapons.DetailsSurvivors can switch all their weapons, but cannot use them(pack/medic weapons) except defib. Also you can filter weapons to use in "incapped_weapons_classlist.cfg"Requirements Mission and Weapons - Info Editor DHooks (Experimental Dynamic Detour support) Cvars: PHP Code: // 0:Disable, 1:Enable plugin // Default: "1" incapped_weapons_enable "1" // 0:Disable, 1:Allow weapons of slot 1 // Default: "1" incapped_weapons_slot1 "1" // 0:Disable, 1:Allow weapons of slot 2 // - // Default: "1" incapped_weapons_slot2 "1" // 0:Disable, 1:Allow weapons of slot 3 // Default: "1" incapped_weapons_slot3 "1" // 0:Disable, 1:Allow weapons of slot 4 // Default: "1" incapped_weapons_slot4 "1" // 0:Disable, 1:Allow weapons of slot 5 // Default: "1" incapped_weapons_slot5 "1" // 0:Disable, 1:Force switch to secundary weapon // Default: "1" incapped_weapons_switch "1" RecommendsWeaponHandling_API Weapon Drop Incapped Crawling with Animation Incapped Shove Incapped Pickup Items CreditsSilvers: for let me using your forwards, and your code BHaType: for give me an example for to how use gamedata file Changelog Code: 2020-01-11 (v1.0) * Initial release. Attached Files Get Plugin or Get Source (incapped_weapons.sp - 12.7 KB) incapped_weapons.smx (11.1 KB) incapped_weapons_classlist.cfg (625 Bytes) Wyświetl pełny artykuł
  13. Details Survivors can pick up weapons or items while incapped, by pressing the E key (+use) Cvars: PHP Code: // 1:Enable, 0:Disable // Default: "1" incapped_pickup_enable "1" // Use pickup distance limit // Default: "101.8" incapped_pickup_distance "101.8" Special Thanks Silvers: for being a good and great example to start writing plugins myself :) Dragokas: for your suggestions and helping me understand the great importance of validations :D pd: I would have like to thank you before, but my English was disgusting and I hate to use the translator always :p Changelog 2020-01-11 (v1.0) * Initial release. Attached Files Get Plugin or Get Source (incapped_pickup.sp - 5.6 KB) Wyświetl pełny artykuł
  14. I need an anti-boot plugin, someone puts my boot on the server .. I use rom_protect but this plugin takes too much time to give it a ban on the ip ... Or something that does not allow more ip on the server .. Przeczytaj cały wpis
  15. Hello friends, there is too much code on the console screen. I want to clean them up. I just want the player messages to appear. I have a plugin. But it can do some operations. I don't know what variables to use. Can you help me? Code: #include <amxmodx> public plugin_init() { register_plugin("Gereksiz Mesajlar", "1.0", "msbeden") register_clcmd("radio1", "Clcmd_Radio") register_clcmd("radio2", "Clcmd_Radio") register_clcmd("radio3", "Clcmd_Radio") register_message(get_user_msgid("TextMsg"), "Message_TextMsg") } public Clcmd_Radio(id) { return 1; } public Message_TextMsg(msgid, msgdest, id) { static msg[23] get_msg_arg_string(2, msg, charsmax(msg)) if(equal(msg, "#Game_teammate_attack") || equal(msg, "#Game_unknown_command") || equal(msg, "#Killed_Teammate") || equal(msg, "#Game_connected") || equal(msg, "#Game_disconnected")) return 1; if(get_msg_args() == 5) { static msg2[18] get_msg_arg_string(5, msg2, charsmax(msg2)) if(equal(msg2, "#Fire_in_the_hole")) return 1; } return 0; }Examples I want to clean: GAMER dropped GAMER died GAMER killed GAMER with awp GAMER killed GAMER with a headshot from aug *** Przeczytaj cały wpis
  16. I want copy a file with code. Just for config folder I will type "amx_copy File1 OutputName" and File1 will copy same config folder as OutputName Przeczytaj cały wpis
  17. MYGO.pl

    Only Freecam

    Can someone make a small plugin to only allow freecam i mean when player die they can just use freecam mode and not any other camera ? Przeczytaj cały wpis
  18. MYGO.pl

    RETAKES v1.0

    R E T A K E S v1.0 The plugin sets up a retake situation in a random site in the map. TT plant bomb and CT have 40 seconds to defuse. TT spawned on bombsite( A or B), CT on random spwan depending of where c4 plant(A or B). Features: - Warm Up for 30 seconds on map start. - Auto plant Bomb. - If CT win, team will be swap. - If TT win 3(cvar) rounds in row, team well be swap. - Playing 15(cvar) rounds and map change on nextmap. - c4 Hud timer. - Remove buy zones. Weapon: Give a round and random weapon. Free Armor for all player and defuse for ct team. Weapon per Rounds: Code: Round | CT | T - - - - - - - - - 1. usp glock 2. usp/m5 glock/m5 3. usp/famas glock/galil 4.-7. usp/m4a1 glock/ak47 other deagle/m4a1 deagle/ak47Random Weapon: From third round one player get smoke, one flash(2x), one he and one player per team get awp and deagle. Spawn Every map must have spawn for Site A and B. For now i create 6 CT and 6 T spawn for this map: - de_dust2, de_inferno, de_mirage, de_train, de_tuscan. API: isRetakes() // Check if retakes start. Rounds() // Check round number. Cvars: retakes_rounds "15" // How much playing round for one map retakes_rowwin "3" // How much T Team can win round in row retakes_prefix "!g[RETAKES]" // Prefix in chat message retakes_random_weapons "3" // In which round start giving random weapon(granades and awp) Important Notes : You must enable nextmap.amxx. Don't work with ReGameDLL!!! Edit mapcycle.txt with maps for retakes. Images: https://imgur.com/a/J8ev5N8 Credits: - Map Spawns // jopmako - Auto Plant Bomb // xPaw/Arkashine - c4 Countdown Timer // SAMURAI16 VIEW Sourcecode on github or DOWNLOAD Master.zip Przeczytaj cały wpis
  19. This plugin has the basic features of an HnS server, CVar List Code: hns_round_start_delay - How long CTs are frozen and Ts dont take fall damage hns_freezetime - How long smoke grenades stun CTs hns_tgod - How long Ts are immune after getting stabbed by a TUpdate Log PHP Code: v0.1.0 > Original release > Added cvars for vairous settings > Added cookies for toggle knife > Fixed various bugs/issues Dev note - To compile you need to have csgocolors.inc Found a bug? Report it! Github repo: https://github.com/amuDev/amuHnS/ Attached Files amuHnS.zip (40.7 KB) Get Plugin or Get Source (amuHnS.sp - 24.6 KB) csgocolors.inc (15.5 KB) Wyświetl pełny artykuł
  20. Can someone help make me a plugin that I can restrict the shield, smokenade, and flashbang from buy menu? Note: I have restmenu.amxx disabled because it doesn't work with podbots. Long story short when its enabled the bots stay in spectator mode. I had found a plugin in the past that I edited to block weapons from buy menu without restmenu.amxx enabled, but I can't find it this time. Thanks! Przeczytaj cały wpis
  21. MYGO.pl

    [CS:GO] amuFJ

    Hello, I am back at plugin development mostly for my fellow HnS community owners & players! To start off, this isnt your everyday FJ plugin, this one is fancy, it has CVars :O. CVar list Code: fj_enabled - Is the plugin enabled or disabled? fj_change_map - Allow FJ plugin to change map at end of FJ mode fj_fjonly - Allows map to start with FJ mode, if disabled admins can start fj rounds with sm_startfj fj_styles - Allow players to switch between pre and nopre when they want fj_noclip - Allow players to noclip when they want fj_teleport - Allow saves and teleports fj_spectate - Allow your players to switch between spectate and playing fj_time - How long you want FJ rounds to beCookies for your style Pre/NoPre saves on connect/disconnect Big thanks to Peace-Maker for making the base plugin on this (csgo_movement_unlocker) Found a bug? Report it! Github repo: https://github.com/amuDev/amuFJ/ Attached Files Get Plugin or Get Source (amuFJ.sp - 12.1 KB) amuFJ.zip (26.0 KB) Wyświetl pełny artykuł
  22. Sory, delete this tread:( I'm need sourcemod plugin, not amx. Hello guy's. I'm looking for plugin, who can write a log file, about all kicks from server (not from admins) for spamming, high ping, bad connection, vac protection, and etc. Need to exlude: all kicks about bots, and when player just disconnect (Disconnected by player) I think it will be wery useful plugin. Przeczytaj cały wpis
  23. Description: All weapons and health items will have their max times they can be used by multiple players override by the desired amount, if the amount is set to 0 the weapon/item will be deleted from map. Usually, on servers with 5+ survivors the weapons in the saferoom or in the spawnzone are not enough for everybody, usually some players end without weapons, or forced to grab a weapon that they dont like because they have no other option. Also there are some servers with 1 weapon per spot, so the first grabs the weapon is the only who gets it, this plugin fits both situations. With this plugin there can be weapons and health items for everyone. Also weapon number can be decreased or removed to make game harder. This plugin don`t spawn any entity, only modifies pre-existing entities when the map starts, any weapon or health item spawned by another plugin after the beggining of the round will not be afected by this plugin, even a deleted weapon can be spawned by another plugin. CVars: PHP Code: // Number of adrenaline shots per spot // - // Default: "2" // Minimum: "0.000000" // Maximum: "20.000000" l4d_wam_adrenaline_count "2" // Number of defibrillators per spot // - // Default: "1" // Minimum: "0.000000" // Maximum: "20.000000" l4d_wam_defibrillator_count "1" // Enable/disable plugin functionality // - // Default: "1" // Minimum: "0.000000" // Maximum: "1.000000" l4d_wam_enabled "1" // Number of medkits per spot // - // Default: "2" // Minimum: "0.000000" // Maximum: "20.000000" l4d_wam_medkit_count "2" // Number of melee weapons per spot // - // Default: "1" // Minimum: "0.000000" // Maximum: "20.000000" l4d_wam_melee_count "1" // Number of pain pills per spot // - // Default: "2" // Minimum: "0.000000" // Maximum: "20.000000" l4d_wam_pain_pills_count "2" // Number of throwables per spot // - // Default: "1" // Minimum: "0.000000" // Maximum: "20.000000" l4d_wam_throwable_count "1" // Number of weapons per spot // - // Default: "9" // Minimum: "0.000000" // Maximum: "32.000000" l4d_wam_weapon_count "9" Changelog: - V1.0 First release. Attached Files Get Plugin or Get Source (l4d2_wam.sp - 5.2 KB) Wyświetl pełny artykuł
  24. i need a (cs 1.6) deathrun timer that will start when you leave the spawn and stop when you finish the map . But i dont need that plugin that let you create buttons that you need to press i need this one from the video bellow. I know its not easy but i am to rusty , i close my servers 8 years ago, but i can't let cs 1.6 die like this so i want to cheate my own. timer start video https://www.youtube.com/watch?v=zUF6jTj6NVs timer stop video https://www.youtube.com/watch?v=s3DMF4NdsbY i think this will be possible with this plugin https://forums.alliedmods.net/archiv.../t-176678.html and this is how top15 should look like https://imgur.com/Q6IDM9e also this thing can help https://amxx.pl/topic/47620-na-deathruna-staty-i-rank/ Przeczytaj cały wpis
  25. Hi! I want a plugin which gives you $16.000 after 20 minutes played. Przeczytaj cały wpis
×
×
  • Dodaj nową pozycję...