├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── PrepareToCommit.ahk ├── README.md ├── ZombieMod ├── zombiemod.smx └── zombiemod.sp ├── _config.yml ├── configs ├── autowarnpunishr.cfg ├── buildinghats.cfg ├── ccc_overrides.cfg ├── chat_processor.cfg ├── crablocations.cfg ├── proxychecker.cfg ├── proxywhitelist.cfg ├── regexrestrict.cfg ├── serverhop.cfg ├── store │ └── killawards.cfg ├── storelocations.cfg └── teleportlocations.cfg ├── data └── tf2idbupdate.sh ├── docs └── redirect │ └── redirect.html ├── plugins ├── BreakBottle.smx ├── NameSleuth │ └── NameSleuth.smx ├── UpdateCheck.smx ├── betherobotsentrybuster.smx ├── chat-processor.smx ├── clocktown │ ├── ct-benslay.smx │ ├── ct-gossipstones.smx │ ├── ct-monospawn.smx │ ├── ct-triggerfreeze.smx │ ├── ct-triggernostalgia.smx │ ├── ct-viewcontrolfix.smx │ └── ct-watch.smx ├── custom-chatcolors-cp-toggle.smx ├── custom-chatcolors-cp.smx ├── custom-chatcolors.smx ├── devzones_nodamage.smx ├── devzones_spawnprotection.smx ├── discord_calladmin.smx ├── funcommandsX.smx ├── funcommandsx │ └── funcommandsX.smx ├── mvm │ └── ngs_autoready.smx ├── ngs_admin_toolkit.smx ├── ngs_adminlist.smx ├── ngs_advert_antiflood.smx ├── ngs_australium_weapons.smx ├── ngs_autorestart.smx ├── ngs_autoserverupdater.smx ├── ngs_autowarnpunishr.smx ├── ngs_backpack_searcher.smx ├── ngs_backpacktf.smx ├── ngs_bacon.smx ├── ngs_buildinghats.smx ├── ngs_cccmysql.smx ├── ngs_celebrateunusual.smx ├── ngs_chatcolgroupoverride.smx ├── ngs_civilianmode.smx ├── ngs_classmenu.smx ├── ngs_classrestriction.smx ├── ngs_connect_backpackvalue.smx ├── ngs_connect_reservedslots.smx ├── ngs_customchatcolors.smx ├── ngs_discordsuite.smx ├── ngs_djsuite.smx ├── ngs_donor_toolkit.smx ├── ngs_donorgrappler.smx ├── ngs_enabledisableplugins.smx ├── ngs_eventmanager.smx ├── ngs_evilrocket.smx ├── ngs_eviltrail.smx ├── ngs_explosivearrows.smx ├── ngs_finditem.smx ├── ngs_fixes.smx ├── ngs_freeduels.smx ├── ngs_friendly.smx ├── ngs_fysicscontrol.smx ├── ngs_getping.smx ├── ngs_helpmenu.smx ├── ngs_hgrlimiter.smx ├── ngs_hookgrabrope.smx ├── ngs_hreserved_slots.smx ├── ngs_instantrespawn.smx ├── ngs_kartify.smx ├── ngs_killstreak.smx ├── ngs_lighttrails.smx ├── ngs_map_teleporter.smx ├── ngs_mgemod.smx ├── ngs_mutenonadmins.smx ├── ngs_namechecker.smx ├── ngs_necromash.smx ├── ngs_player_feedback.smx ├── ngs_player_toolkit.smx ├── ngs_portalmod_gun.smx ├── ngs_proxychecker.smx ├── ngs_pyroairjump.smx ├── ngs_raffle.smx ├── ngs_raffleannounce.smx ├── ngs_randomfilter.smx ├── ngs_regexfilter.smx ├── ngs_resizeplayers.smx ├── ngs_rtdpunisher.smx ├── ngs_serverhop.smx ├── ngs_serverupdatechecker.smx ├── ngs_smarterspawns.smx ├── ngs_spawnprotection.smx ├── ngs_spycrab.smx ├── ngs_steamrepchecker.smx ├── ngs_storestuff.smx ├── ngs_stuck.smx ├── ngs_tauntmenu.smx ├── ngs_testmedieval.smx ├── ngs_tf2fix.smx ├── ngs_tf2items_giveweapon.smx ├── ngs_toggleweaponsounds.smx ├── ngs_tradechat.smx ├── ngs_tradeprotect.smx ├── ngs_truedemocracy.smx ├── ngs_unusualtradeannouncer.smx ├── ngs_unusualweapons.smx ├── ngs_viprooms.smx ├── ngs_voicemenuthrottler.smx ├── ngs_voicesofngs.smx ├── ngs_votemute.smx ├── ngs_webshortcuts.smx ├── ngs_weddings.smx ├── requests │ └── ngs_zerogs_rtdpunisher.smx ├── spycrab.smx ├── store-steambotcredits.smx ├── store │ ├── store-backend.smx │ ├── store-chat.smx │ ├── store-commanditemshold.smx │ ├── store-core.smx │ ├── store-distributor.smx │ ├── store-gambling.smx │ ├── store-gifting.smx │ ├── store-inventory.smx │ ├── store-killawards.smx │ ├── store-loadouts.smx │ ├── store-logging.smx │ ├── store-refunds.smx │ ├── store-shop.smx │ ├── store-steamgroupcredits.smx │ └── store-trails.smx ├── tempauthexploitfix.smx └── tf2attributes.smx ├── scripting ├── BreakBottle.sp ├── NameSleuth │ └── NameSleuth.sp ├── TESTPLUGINSPLEASEIGNORE │ ├── SMLIB_COMPILE_TEST.sp │ ├── SMLIBtest_colors.sp │ ├── SMLIBtest_compile-all.sp │ ├── TIMERTEST.sp │ ├── ngs_australium_weapons.sp │ ├── ngs_backpack_searcher.sp │ ├── ngs_backpacktf_TEMP.sp │ ├── ngs_chatcolgroupoverride.sp │ ├── ngs_classrestriction.sp │ ├── ngs_connect_backpackvalue.sp │ ├── ngs_customchatcolors.sp │ ├── ngs_donorbot.sp │ ├── ngs_donorgrappler.sp │ ├── ngs_eventmanager.sp │ ├── ngs_eviltrail.sp │ ├── ngs_finditem.sp │ ├── ngs_hreserved_slots.sp │ ├── ngs_regexfilter.sp │ ├── ngs_testchatprocessorcolors.sp │ ├── ngs_testmedieval.sp │ ├── ngs_testnoblockontouch.sp │ ├── ngs_teststeamworks.sp │ ├── ngs_testusermessage.sp │ ├── redirecthooker.sp │ ├── sm_cmdinfo.sp │ ├── tempauthexploitfix.sp │ ├── teststuff.sp │ ├── textbasedadventure.sp │ ├── tf2idb.sp │ └── tf2items_giveweapon_original.sp ├── UpdateCheck.sp ├── betherobotsentrybuster.sp ├── calladmin_mysql.sp ├── chat-processor.sp ├── clocktown │ ├── ct-benslay.sp │ ├── ct-gossipstones.sp │ ├── ct-monospawn.sp │ ├── ct-triggerfreeze.sp │ ├── ct-triggernostalgia.sp │ ├── ct-viewcontrolfix.sp │ └── ct-watch.sp ├── custom-chatcolors-cp-toggle.sp ├── custom-chatcolors-cp.sp ├── custom-chatcolors.sp ├── devzones_spawnprotection.sp ├── discord_calladmin.sp ├── funcommands-x │ ├── funcommandsX.sp │ └── funcommandsx │ │ ├── explode.sp │ │ ├── fakesay.sp │ │ ├── ff.sp │ │ ├── happy.sp │ │ ├── overlay.sp │ │ ├── rgba.sp │ │ ├── rgba │ │ ├── colorize.sp │ │ ├── disco.sp │ │ └── invisible.sp │ │ ├── sayactions.sp │ │ └── teleport.sp ├── include │ ├── .gitignore │ ├── EasyJSON.inc │ ├── SteamWorks.inc │ ├── advanced_motd.inc │ ├── afk_manager.inc │ ├── async.inc │ ├── autoexecconfig.inc │ ├── betherobot.inc │ ├── cURL.inc │ ├── cURL_header.inc │ ├── calladmin.inc │ ├── calladmin_stocks.inc │ ├── ccc.inc │ ├── chat-processor.inc │ ├── collisionhook.inc │ ├── colors.inc │ ├── colorvariables.inc │ ├── connect.inc │ ├── cp-scp-wrapper.inc │ ├── customkeyvalues.inc │ ├── datetime.inc │ ├── ddhoward_updater.inc │ ├── devzones.inc │ ├── discord.inc │ ├── freak_fortress_2.inc │ ├── free_duels.inc │ ├── friendly.inc │ ├── hashes.inc │ ├── hgr.inc │ ├── json.inc │ ├── json │ │ ├── decode_helpers.inc │ │ ├── definitions.inc │ │ ├── encode_helpers.inc │ │ ├── object.inc │ │ └── string_helpers.inc │ ├── mckayupdater.sp │ ├── morecolors.inc │ ├── multicolors.inc │ ├── multicolors │ │ ├── colors.inc │ │ └── morecolors.inc │ ├── ngs_votes.inc │ ├── ngsupdater.inc │ ├── ngsutils.inc │ ├── ripext.inc │ ├── ripext │ │ ├── http.inc │ │ └── json.inc │ ├── scp.inc │ ├── smac.inc │ ├── smac_cvars.inc │ ├── smac_stocks.inc │ ├── smac_wallhack.inc │ ├── smartdm.inc │ ├── smjansson.inc │ ├── smlib.inc │ ├── smlib │ │ ├── arrays.inc │ │ ├── clients.inc │ │ ├── colors.inc │ │ ├── concommands.inc │ │ ├── convars.inc │ │ ├── crypt.inc │ │ ├── debug.inc │ │ ├── dynarrays.inc │ │ ├── edicts.inc │ │ ├── effects.inc │ │ ├── entities.inc │ │ ├── files.inc │ │ ├── game.inc │ │ ├── general.inc │ │ ├── math.inc │ │ ├── menus.inc │ │ ├── server.inc │ │ ├── sql.inc │ │ ├── strings.inc │ │ ├── teams.inc │ │ ├── vehicles.inc │ │ ├── weapons.inc │ │ └── world.inc │ ├── socket.inc │ ├── sourcebans.inc │ ├── sourcebanspp.inc │ ├── sourcecomms.inc │ ├── steamtools.inc │ ├── steamtools.sp │ ├── store.inc │ ├── store │ │ ├── store-backend.inc │ │ ├── store-core.inc │ │ ├── store-inventory.inc │ │ ├── store-loadouts.inc │ │ ├── store-logging.inc │ │ ├── store-shop.inc │ │ └── store-stocks.inc │ ├── system2.inc │ ├── system2 │ │ ├── legacy.inc │ │ └── request.inc │ ├── tf2attributes.inc │ ├── tf2idb.inc │ ├── tf2items.inc │ ├── timber.inc │ ├── unusual.inc │ ├── updater.inc │ ├── validClient.inc │ ├── vgui_motd_stocks.inc │ ├── webfix.inc │ ├── websocket.inc │ ├── weddings.inc │ ├── weddings │ │ ├── functions_general.inc │ │ ├── functions_marriages.inc │ │ ├── functions_natives.inc │ │ ├── functions_proposals.inc │ │ ├── menu_handlers.inc │ │ └── sql_queries.inc │ ├── zombiereloaded.inc │ └── zr │ │ ├── class.zr.inc │ │ ├── infect.zr.inc │ │ └── respawn.zr.inc ├── mvm │ └── ngs_autoready.sp ├── ngs_admin_toolkit.sp ├── ngs_adminlist.sp ├── ngs_advert_antiflood.sp ├── ngs_autorestart.sp ├── ngs_autowarnpunishr.sp ├── ngs_backpacktf.sp ├── ngs_bacon.sp ├── ngs_buildinghats.sp ├── ngs_cccmysql.sp ├── ngs_celebrateunusual.sp ├── ngs_civilianmode.sp ├── ngs_classmenu.sp ├── ngs_connect_reservedslots.sp ├── ngs_discordsuite.sp ├── ngs_djsuite.sp ├── ngs_donor_toolkit.sp ├── ngs_enabledisableplugins.sp ├── ngs_evilrocket.sp ├── ngs_explosivearrows.sp ├── ngs_fixes.sp ├── ngs_freeduels.sp ├── ngs_friendly.sp ├── ngs_fysicscontrol.sp ├── ngs_getping.sp ├── ngs_helpmenu.sp ├── ngs_hgrlimiter.sp ├── ngs_hookgrabrope.sp ├── ngs_instantrespawn.sp ├── ngs_kartify.sp ├── ngs_killstreak.sp ├── ngs_lighttrails.sp ├── ngs_map_teleporter.sp ├── ngs_mgemod.sp ├── ngs_mutenonadmins.sp ├── ngs_namechecker.sp ├── ngs_necromash.sp ├── ngs_player_feedback.sp ├── ngs_player_toolkit.sp ├── ngs_portalmod_gun.sp ├── ngs_proxychecker.sp ├── ngs_pyroairjump.sp ├── ngs_raffle.sp ├── ngs_raffleannounce.sp ├── ngs_randomfilter.sp ├── ngs_reserved_slots.sp ├── ngs_resizeplayers.sp ├── ngs_rtdpunisher.sp ├── ngs_serverhop.sp ├── ngs_serverupdatechecker.sp ├── ngs_smarterspawns.sp ├── ngs_sourcesleuthaddon.sp ├── ngs_spawnmonoculus.sp ├── ngs_spawnprotection.sp ├── ngs_spycrab.sp ├── ngs_storestuff.sp ├── ngs_stuck.sp ├── ngs_tauntmenu.sp ├── ngs_tf2fix.sp ├── ngs_tf2items_giveweapon.sp ├── ngs_toggleweaponsounds.sp ├── ngs_tradechat.sp ├── ngs_tradeprotect.sp ├── ngs_truedemocracy.sp ├── ngs_unusualtradeannouncer.sp ├── ngs_unusualweapons.sp ├── ngs_viprooms.sp ├── ngs_voicemenuthrottler.sp ├── ngs_voicesofngs.sp ├── ngs_votemute.sp ├── ngs_webshortcuts.sp ├── ngs_weddings.sp ├── projectmann │ └── ProjectMann.sp ├── pugs │ └── ngs_pugsuite.sp ├── requests │ ├── ngs_perclassspecialmodels.sp │ └── ngs_zerogs_rtdpunisher.sp ├── store-steambotcredits.sp ├── store │ ├── store-backend.sp │ ├── store-bosses.sp │ ├── store-chat.sp │ ├── store-commanditemshold.sp │ ├── store-core.sp │ ├── store-distributor.sp │ ├── store-gambling.sp │ ├── store-gifting.sp │ ├── store-inventory.sp │ ├── store-killawards.sp │ ├── store-loadouts.sp │ ├── store-logging.sp │ ├── store-refunds.sp │ ├── store-shop.sp │ ├── store-steamgroupcredits.sp │ └── store-trails.sp └── toggle_weapon_sounds_clientprefs.sp ├── smac ├── GPLv3.txt ├── LICENSE.txt ├── plugins │ ├── smac.smx │ ├── smac_aimbot.smx │ ├── smac_autotrigger.smx │ ├── smac_client.smx │ ├── smac_commands.smx │ ├── smac_css_antiflash.smx │ ├── smac_css_antismoke.smx │ ├── smac_css_fixes.smx │ ├── smac_cvars.smx │ ├── smac_eac_banlist.smx │ ├── smac_esea_banlist.smx │ ├── smac_eyetest.smx │ ├── smac_hl2dm_fixes.smx │ ├── smac_l4d2_fixes.smx │ ├── smac_rcon.smx │ ├── smac_speedhack.smx │ ├── smac_spinhack.smx │ └── smac_wallhack.smx ├── scripting │ ├── include │ │ ├── colors.inc │ │ ├── smac.inc │ │ ├── smac_cvars.inc │ │ ├── smac_stocks.inc │ │ ├── smac_wallhack.inc │ │ └── socket.inc │ ├── smac.sp │ ├── smac_aimbot.sp │ ├── smac_autotrigger.sp │ ├── smac_client.sp │ ├── smac_commands.sp │ ├── smac_css_antiflash.sp │ ├── smac_css_antismoke.sp │ ├── smac_css_fixes.sp │ ├── smac_cvars.sp │ ├── smac_eac_banlist.sp │ ├── smac_esea_banlist.sp │ ├── smac_eyetest.sp │ ├── smac_hl2dm_fixes.sp │ ├── smac_l4d2_fixes.sp │ ├── smac_rcon.sp │ ├── smac_speedhack.sp │ ├── smac_spinhack.sp │ └── smac_wallhack.sp └── translations │ ├── cze │ └── smac.phrases.txt │ ├── da │ └── smac.phrases.txt │ ├── de │ └── smac.phrases.txt │ ├── es │ └── smac.phrases.txt │ ├── fi │ └── smac.phrases.txt │ ├── fr │ └── smac.phrases.txt │ ├── he │ └── smac.phrases.txt │ ├── hu │ └── smac.phrases.txt │ ├── it │ └── smac.phrases.txt │ ├── ko │ └── smac.phrases.txt │ ├── lt │ └── smac.phrases.txt │ ├── nl │ └── smac.phrases.txt │ ├── no │ └── smac.phrases.txt │ ├── pl │ └── smac.phrases.txt │ ├── pt │ └── smac.phrases.txt │ ├── ru │ └── smac.phrases.txt │ ├── sk │ └── smac.phrases.txt │ ├── smac.phrases.txt │ └── sv │ └── smac.phrases.txt ├── sound └── ngs │ └── unusualcelebration │ └── Sf13_bcon_misc17.wav ├── translations ├── afk_manager.phrases.txt ├── backpack-tf.phrases.txt ├── free_duels.phrases.txt ├── serverhop.phrases.txt ├── store.killawards.txt ├── store.phrases.txt ├── tradechat.phrases.txt └── weddings.phrases.txt └── updater ├── ngs_admin_toolkit.txt ├── ngs_adminlist.txt ├── ngs_advert_antiflood.txt ├── ngs_autorestart.txt ├── ngs_backpacktf.txt ├── ngs_buildinghats.txt ├── ngs_cccmysql.txt ├── ngs_celebrateunusual.txt ├── ngs_civilianmode.txt ├── ngs_connect_reservedslots.txt ├── ngs_discordsuite.txt ├── ngs_djsuite.txt ├── ngs_donor_toolkit.txt ├── ngs_enabledisableplugins.txt ├── ngs_evilrocket.txt ├── ngs_explosivearrows.txt ├── ngs_fixes.txt ├── ngs_freeduels.txt ├── ngs_friendly.txt ├── ngs_getping.txt ├── ngs_helpmenu.txt ├── ngs_hgrlimiter.txt ├── ngs_kartify.txt ├── ngs_killstreak.txt ├── ngs_lighttrails.txt ├── ngs_map_teleporter.txt ├── ngs_necromash.txt ├── ngs_player_feedback.txt ├── ngs_player_toolkit.txt ├── ngs_proxychecker.txt ├── ngs_raffle.txt ├── ngs_raffleannounce.txt ├── ngs_randomfilter.txt ├── ngs_resizeplayers.txt ├── ngs_rtdpunisher.txt ├── ngs_serverhop.txt ├── ngs_serverupdatechecker.txt ├── ngs_spycrab.txt ├── ngs_steamrepchecker.txt ├── ngs_storestuff.txt ├── ngs_stuck.txt ├── ngs_tauntmenu.txt ├── ngs_tf2fix.txt ├── ngs_tf2items_giveweapon.txt ├── ngs_tradechat.txt ├── ngs_tradeprotect.txt ├── ngs_voicemenuthrottler.txt ├── ngs_votemute.txt └── ngs_webshortcuts.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /PrepareToCommit.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/PrepareToCommit.ahk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/README.md -------------------------------------------------------------------------------- /ZombieMod/zombiemod.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/ZombieMod/zombiemod.smx -------------------------------------------------------------------------------- /ZombieMod/zombiemod.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/ZombieMod/zombiemod.sp -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/_config.yml -------------------------------------------------------------------------------- /configs/autowarnpunishr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/autowarnpunishr.cfg -------------------------------------------------------------------------------- /configs/buildinghats.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/buildinghats.cfg -------------------------------------------------------------------------------- /configs/ccc_overrides.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/ccc_overrides.cfg -------------------------------------------------------------------------------- /configs/chat_processor.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/chat_processor.cfg -------------------------------------------------------------------------------- /configs/crablocations.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/crablocations.cfg -------------------------------------------------------------------------------- /configs/proxychecker.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/proxychecker.cfg -------------------------------------------------------------------------------- /configs/proxywhitelist.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/proxywhitelist.cfg -------------------------------------------------------------------------------- /configs/regexrestrict.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/regexrestrict.cfg -------------------------------------------------------------------------------- /configs/serverhop.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/serverhop.cfg -------------------------------------------------------------------------------- /configs/store/killawards.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/store/killawards.cfg -------------------------------------------------------------------------------- /configs/storelocations.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/storelocations.cfg -------------------------------------------------------------------------------- /configs/teleportlocations.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/configs/teleportlocations.cfg -------------------------------------------------------------------------------- /data/tf2idbupdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/data/tf2idbupdate.sh -------------------------------------------------------------------------------- /docs/redirect/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/docs/redirect/redirect.html -------------------------------------------------------------------------------- /plugins/BreakBottle.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/BreakBottle.smx -------------------------------------------------------------------------------- /plugins/NameSleuth/NameSleuth.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/NameSleuth/NameSleuth.smx -------------------------------------------------------------------------------- /plugins/UpdateCheck.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/UpdateCheck.smx -------------------------------------------------------------------------------- /plugins/betherobotsentrybuster.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/betherobotsentrybuster.smx -------------------------------------------------------------------------------- /plugins/chat-processor.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/chat-processor.smx -------------------------------------------------------------------------------- /plugins/clocktown/ct-benslay.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/clocktown/ct-benslay.smx -------------------------------------------------------------------------------- /plugins/clocktown/ct-gossipstones.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/clocktown/ct-gossipstones.smx -------------------------------------------------------------------------------- /plugins/clocktown/ct-monospawn.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/clocktown/ct-monospawn.smx -------------------------------------------------------------------------------- /plugins/clocktown/ct-triggerfreeze.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/clocktown/ct-triggerfreeze.smx -------------------------------------------------------------------------------- /plugins/clocktown/ct-triggernostalgia.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/clocktown/ct-triggernostalgia.smx -------------------------------------------------------------------------------- /plugins/clocktown/ct-viewcontrolfix.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/clocktown/ct-viewcontrolfix.smx -------------------------------------------------------------------------------- /plugins/clocktown/ct-watch.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/clocktown/ct-watch.smx -------------------------------------------------------------------------------- /plugins/custom-chatcolors-cp-toggle.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/custom-chatcolors-cp-toggle.smx -------------------------------------------------------------------------------- /plugins/custom-chatcolors-cp.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/custom-chatcolors-cp.smx -------------------------------------------------------------------------------- /plugins/custom-chatcolors.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/custom-chatcolors.smx -------------------------------------------------------------------------------- /plugins/devzones_nodamage.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/devzones_nodamage.smx -------------------------------------------------------------------------------- /plugins/devzones_spawnprotection.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/devzones_spawnprotection.smx -------------------------------------------------------------------------------- /plugins/discord_calladmin.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/discord_calladmin.smx -------------------------------------------------------------------------------- /plugins/funcommandsX.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/funcommandsX.smx -------------------------------------------------------------------------------- /plugins/funcommandsx/funcommandsX.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/funcommandsx/funcommandsX.smx -------------------------------------------------------------------------------- /plugins/mvm/ngs_autoready.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/mvm/ngs_autoready.smx -------------------------------------------------------------------------------- /plugins/ngs_admin_toolkit.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_admin_toolkit.smx -------------------------------------------------------------------------------- /plugins/ngs_adminlist.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_adminlist.smx -------------------------------------------------------------------------------- /plugins/ngs_advert_antiflood.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_advert_antiflood.smx -------------------------------------------------------------------------------- /plugins/ngs_australium_weapons.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_australium_weapons.smx -------------------------------------------------------------------------------- /plugins/ngs_autorestart.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_autorestart.smx -------------------------------------------------------------------------------- /plugins/ngs_autoserverupdater.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_autoserverupdater.smx -------------------------------------------------------------------------------- /plugins/ngs_autowarnpunishr.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_autowarnpunishr.smx -------------------------------------------------------------------------------- /plugins/ngs_backpack_searcher.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_backpack_searcher.smx -------------------------------------------------------------------------------- /plugins/ngs_backpacktf.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_backpacktf.smx -------------------------------------------------------------------------------- /plugins/ngs_bacon.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_bacon.smx -------------------------------------------------------------------------------- /plugins/ngs_buildinghats.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_buildinghats.smx -------------------------------------------------------------------------------- /plugins/ngs_cccmysql.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_cccmysql.smx -------------------------------------------------------------------------------- /plugins/ngs_celebrateunusual.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_celebrateunusual.smx -------------------------------------------------------------------------------- /plugins/ngs_chatcolgroupoverride.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_chatcolgroupoverride.smx -------------------------------------------------------------------------------- /plugins/ngs_civilianmode.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_civilianmode.smx -------------------------------------------------------------------------------- /plugins/ngs_classmenu.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_classmenu.smx -------------------------------------------------------------------------------- /plugins/ngs_classrestriction.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_classrestriction.smx -------------------------------------------------------------------------------- /plugins/ngs_connect_backpackvalue.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_connect_backpackvalue.smx -------------------------------------------------------------------------------- /plugins/ngs_connect_reservedslots.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_connect_reservedslots.smx -------------------------------------------------------------------------------- /plugins/ngs_customchatcolors.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_customchatcolors.smx -------------------------------------------------------------------------------- /plugins/ngs_discordsuite.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_discordsuite.smx -------------------------------------------------------------------------------- /plugins/ngs_djsuite.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_djsuite.smx -------------------------------------------------------------------------------- /plugins/ngs_donor_toolkit.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_donor_toolkit.smx -------------------------------------------------------------------------------- /plugins/ngs_donorgrappler.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_donorgrappler.smx -------------------------------------------------------------------------------- /plugins/ngs_enabledisableplugins.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_enabledisableplugins.smx -------------------------------------------------------------------------------- /plugins/ngs_eventmanager.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_eventmanager.smx -------------------------------------------------------------------------------- /plugins/ngs_evilrocket.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_evilrocket.smx -------------------------------------------------------------------------------- /plugins/ngs_eviltrail.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_eviltrail.smx -------------------------------------------------------------------------------- /plugins/ngs_explosivearrows.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_explosivearrows.smx -------------------------------------------------------------------------------- /plugins/ngs_finditem.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_finditem.smx -------------------------------------------------------------------------------- /plugins/ngs_fixes.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_fixes.smx -------------------------------------------------------------------------------- /plugins/ngs_freeduels.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_freeduels.smx -------------------------------------------------------------------------------- /plugins/ngs_friendly.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_friendly.smx -------------------------------------------------------------------------------- /plugins/ngs_fysicscontrol.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_fysicscontrol.smx -------------------------------------------------------------------------------- /plugins/ngs_getping.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_getping.smx -------------------------------------------------------------------------------- /plugins/ngs_helpmenu.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_helpmenu.smx -------------------------------------------------------------------------------- /plugins/ngs_hgrlimiter.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_hgrlimiter.smx -------------------------------------------------------------------------------- /plugins/ngs_hookgrabrope.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_hookgrabrope.smx -------------------------------------------------------------------------------- /plugins/ngs_hreserved_slots.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_hreserved_slots.smx -------------------------------------------------------------------------------- /plugins/ngs_instantrespawn.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_instantrespawn.smx -------------------------------------------------------------------------------- /plugins/ngs_kartify.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_kartify.smx -------------------------------------------------------------------------------- /plugins/ngs_killstreak.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_killstreak.smx -------------------------------------------------------------------------------- /plugins/ngs_lighttrails.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_lighttrails.smx -------------------------------------------------------------------------------- /plugins/ngs_map_teleporter.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_map_teleporter.smx -------------------------------------------------------------------------------- /plugins/ngs_mgemod.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_mgemod.smx -------------------------------------------------------------------------------- /plugins/ngs_mutenonadmins.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_mutenonadmins.smx -------------------------------------------------------------------------------- /plugins/ngs_namechecker.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_namechecker.smx -------------------------------------------------------------------------------- /plugins/ngs_necromash.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_necromash.smx -------------------------------------------------------------------------------- /plugins/ngs_player_feedback.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_player_feedback.smx -------------------------------------------------------------------------------- /plugins/ngs_player_toolkit.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_player_toolkit.smx -------------------------------------------------------------------------------- /plugins/ngs_portalmod_gun.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_portalmod_gun.smx -------------------------------------------------------------------------------- /plugins/ngs_proxychecker.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_proxychecker.smx -------------------------------------------------------------------------------- /plugins/ngs_pyroairjump.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_pyroairjump.smx -------------------------------------------------------------------------------- /plugins/ngs_raffle.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_raffle.smx -------------------------------------------------------------------------------- /plugins/ngs_raffleannounce.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_raffleannounce.smx -------------------------------------------------------------------------------- /plugins/ngs_randomfilter.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_randomfilter.smx -------------------------------------------------------------------------------- /plugins/ngs_regexfilter.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_regexfilter.smx -------------------------------------------------------------------------------- /plugins/ngs_resizeplayers.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_resizeplayers.smx -------------------------------------------------------------------------------- /plugins/ngs_rtdpunisher.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_rtdpunisher.smx -------------------------------------------------------------------------------- /plugins/ngs_serverhop.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_serverhop.smx -------------------------------------------------------------------------------- /plugins/ngs_serverupdatechecker.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_serverupdatechecker.smx -------------------------------------------------------------------------------- /plugins/ngs_smarterspawns.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_smarterspawns.smx -------------------------------------------------------------------------------- /plugins/ngs_spawnprotection.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_spawnprotection.smx -------------------------------------------------------------------------------- /plugins/ngs_spycrab.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_spycrab.smx -------------------------------------------------------------------------------- /plugins/ngs_steamrepchecker.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_steamrepchecker.smx -------------------------------------------------------------------------------- /plugins/ngs_storestuff.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_storestuff.smx -------------------------------------------------------------------------------- /plugins/ngs_stuck.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_stuck.smx -------------------------------------------------------------------------------- /plugins/ngs_tauntmenu.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_tauntmenu.smx -------------------------------------------------------------------------------- /plugins/ngs_testmedieval.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_testmedieval.smx -------------------------------------------------------------------------------- /plugins/ngs_tf2fix.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_tf2fix.smx -------------------------------------------------------------------------------- /plugins/ngs_tf2items_giveweapon.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_tf2items_giveweapon.smx -------------------------------------------------------------------------------- /plugins/ngs_toggleweaponsounds.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_toggleweaponsounds.smx -------------------------------------------------------------------------------- /plugins/ngs_tradechat.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_tradechat.smx -------------------------------------------------------------------------------- /plugins/ngs_tradeprotect.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_tradeprotect.smx -------------------------------------------------------------------------------- /plugins/ngs_truedemocracy.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_truedemocracy.smx -------------------------------------------------------------------------------- /plugins/ngs_unusualtradeannouncer.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_unusualtradeannouncer.smx -------------------------------------------------------------------------------- /plugins/ngs_unusualweapons.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_unusualweapons.smx -------------------------------------------------------------------------------- /plugins/ngs_viprooms.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_viprooms.smx -------------------------------------------------------------------------------- /plugins/ngs_voicemenuthrottler.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_voicemenuthrottler.smx -------------------------------------------------------------------------------- /plugins/ngs_voicesofngs.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_voicesofngs.smx -------------------------------------------------------------------------------- /plugins/ngs_votemute.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_votemute.smx -------------------------------------------------------------------------------- /plugins/ngs_webshortcuts.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_webshortcuts.smx -------------------------------------------------------------------------------- /plugins/ngs_weddings.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/ngs_weddings.smx -------------------------------------------------------------------------------- /plugins/requests/ngs_zerogs_rtdpunisher.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/requests/ngs_zerogs_rtdpunisher.smx -------------------------------------------------------------------------------- /plugins/spycrab.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/spycrab.smx -------------------------------------------------------------------------------- /plugins/store-steambotcredits.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store-steambotcredits.smx -------------------------------------------------------------------------------- /plugins/store/store-backend.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-backend.smx -------------------------------------------------------------------------------- /plugins/store/store-chat.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-chat.smx -------------------------------------------------------------------------------- /plugins/store/store-commanditemshold.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-commanditemshold.smx -------------------------------------------------------------------------------- /plugins/store/store-core.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-core.smx -------------------------------------------------------------------------------- /plugins/store/store-distributor.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-distributor.smx -------------------------------------------------------------------------------- /plugins/store/store-gambling.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-gambling.smx -------------------------------------------------------------------------------- /plugins/store/store-gifting.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-gifting.smx -------------------------------------------------------------------------------- /plugins/store/store-inventory.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-inventory.smx -------------------------------------------------------------------------------- /plugins/store/store-killawards.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-killawards.smx -------------------------------------------------------------------------------- /plugins/store/store-loadouts.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-loadouts.smx -------------------------------------------------------------------------------- /plugins/store/store-logging.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-logging.smx -------------------------------------------------------------------------------- /plugins/store/store-refunds.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-refunds.smx -------------------------------------------------------------------------------- /plugins/store/store-shop.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-shop.smx -------------------------------------------------------------------------------- /plugins/store/store-steamgroupcredits.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-steamgroupcredits.smx -------------------------------------------------------------------------------- /plugins/store/store-trails.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/store/store-trails.smx -------------------------------------------------------------------------------- /plugins/tempauthexploitfix.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/tempauthexploitfix.smx -------------------------------------------------------------------------------- /plugins/tf2attributes.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/plugins/tf2attributes.smx -------------------------------------------------------------------------------- /scripting/BreakBottle.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/BreakBottle.sp -------------------------------------------------------------------------------- /scripting/NameSleuth/NameSleuth.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/NameSleuth/NameSleuth.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/SMLIB_COMPILE_TEST.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/SMLIB_COMPILE_TEST.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/SMLIBtest_colors.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/SMLIBtest_colors.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/SMLIBtest_compile-all.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/SMLIBtest_compile-all.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/TIMERTEST.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/TIMERTEST.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_australium_weapons.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_australium_weapons.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_backpack_searcher.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_backpack_searcher.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_backpacktf_TEMP.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_backpacktf_TEMP.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_chatcolgroupoverride.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_chatcolgroupoverride.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_classrestriction.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_classrestriction.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_connect_backpackvalue.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_connect_backpackvalue.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_customchatcolors.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_customchatcolors.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_donorbot.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_donorbot.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_donorgrappler.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_donorgrappler.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_eventmanager.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_eventmanager.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_eviltrail.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_eviltrail.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_finditem.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_finditem.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_hreserved_slots.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_hreserved_slots.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_regexfilter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_regexfilter.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_testchatprocessorcolors.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_testchatprocessorcolors.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_testmedieval.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_testmedieval.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_testnoblockontouch.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_testnoblockontouch.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_teststeamworks.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_teststeamworks.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/ngs_testusermessage.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/ngs_testusermessage.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/redirecthooker.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/redirecthooker.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/sm_cmdinfo.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/sm_cmdinfo.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/tempauthexploitfix.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/tempauthexploitfix.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/teststuff.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/teststuff.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/textbasedadventure.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/textbasedadventure.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/tf2idb.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/tf2idb.sp -------------------------------------------------------------------------------- /scripting/TESTPLUGINSPLEASEIGNORE/tf2items_giveweapon_original.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/TESTPLUGINSPLEASEIGNORE/tf2items_giveweapon_original.sp -------------------------------------------------------------------------------- /scripting/UpdateCheck.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/UpdateCheck.sp -------------------------------------------------------------------------------- /scripting/betherobotsentrybuster.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/betherobotsentrybuster.sp -------------------------------------------------------------------------------- /scripting/calladmin_mysql.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/calladmin_mysql.sp -------------------------------------------------------------------------------- /scripting/chat-processor.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/chat-processor.sp -------------------------------------------------------------------------------- /scripting/clocktown/ct-benslay.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/clocktown/ct-benslay.sp -------------------------------------------------------------------------------- /scripting/clocktown/ct-gossipstones.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/clocktown/ct-gossipstones.sp -------------------------------------------------------------------------------- /scripting/clocktown/ct-monospawn.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/clocktown/ct-monospawn.sp -------------------------------------------------------------------------------- /scripting/clocktown/ct-triggerfreeze.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/clocktown/ct-triggerfreeze.sp -------------------------------------------------------------------------------- /scripting/clocktown/ct-triggernostalgia.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/clocktown/ct-triggernostalgia.sp -------------------------------------------------------------------------------- /scripting/clocktown/ct-viewcontrolfix.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/clocktown/ct-viewcontrolfix.sp -------------------------------------------------------------------------------- /scripting/clocktown/ct-watch.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/clocktown/ct-watch.sp -------------------------------------------------------------------------------- /scripting/custom-chatcolors-cp-toggle.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/custom-chatcolors-cp-toggle.sp -------------------------------------------------------------------------------- /scripting/custom-chatcolors-cp.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/custom-chatcolors-cp.sp -------------------------------------------------------------------------------- /scripting/custom-chatcolors.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/custom-chatcolors.sp -------------------------------------------------------------------------------- /scripting/devzones_spawnprotection.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/devzones_spawnprotection.sp -------------------------------------------------------------------------------- /scripting/discord_calladmin.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/discord_calladmin.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsX.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsX.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsx/explode.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsx/explode.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsx/fakesay.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsx/fakesay.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsx/ff.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsx/ff.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsx/happy.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsx/happy.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsx/overlay.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsx/overlay.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsx/rgba.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsx/rgba.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsx/rgba/colorize.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsx/rgba/colorize.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsx/rgba/disco.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsx/rgba/disco.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsx/rgba/invisible.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsx/rgba/invisible.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsx/sayactions.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsx/sayactions.sp -------------------------------------------------------------------------------- /scripting/funcommands-x/funcommandsx/teleport.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/funcommands-x/funcommandsx/teleport.sp -------------------------------------------------------------------------------- /scripting/include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/.gitignore -------------------------------------------------------------------------------- /scripting/include/EasyJSON.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/EasyJSON.inc -------------------------------------------------------------------------------- /scripting/include/SteamWorks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/SteamWorks.inc -------------------------------------------------------------------------------- /scripting/include/advanced_motd.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/advanced_motd.inc -------------------------------------------------------------------------------- /scripting/include/afk_manager.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/afk_manager.inc -------------------------------------------------------------------------------- /scripting/include/async.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/async.inc -------------------------------------------------------------------------------- /scripting/include/autoexecconfig.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/autoexecconfig.inc -------------------------------------------------------------------------------- /scripting/include/betherobot.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/betherobot.inc -------------------------------------------------------------------------------- /scripting/include/cURL.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/cURL.inc -------------------------------------------------------------------------------- /scripting/include/cURL_header.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/cURL_header.inc -------------------------------------------------------------------------------- /scripting/include/calladmin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/calladmin.inc -------------------------------------------------------------------------------- /scripting/include/calladmin_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/calladmin_stocks.inc -------------------------------------------------------------------------------- /scripting/include/ccc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/ccc.inc -------------------------------------------------------------------------------- /scripting/include/chat-processor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/chat-processor.inc -------------------------------------------------------------------------------- /scripting/include/collisionhook.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/collisionhook.inc -------------------------------------------------------------------------------- /scripting/include/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/colors.inc -------------------------------------------------------------------------------- /scripting/include/colorvariables.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/colorvariables.inc -------------------------------------------------------------------------------- /scripting/include/connect.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/connect.inc -------------------------------------------------------------------------------- /scripting/include/cp-scp-wrapper.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/cp-scp-wrapper.inc -------------------------------------------------------------------------------- /scripting/include/customkeyvalues.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/customkeyvalues.inc -------------------------------------------------------------------------------- /scripting/include/datetime.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/datetime.inc -------------------------------------------------------------------------------- /scripting/include/ddhoward_updater.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/ddhoward_updater.inc -------------------------------------------------------------------------------- /scripting/include/devzones.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/devzones.inc -------------------------------------------------------------------------------- /scripting/include/discord.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/discord.inc -------------------------------------------------------------------------------- /scripting/include/freak_fortress_2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/freak_fortress_2.inc -------------------------------------------------------------------------------- /scripting/include/free_duels.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/free_duels.inc -------------------------------------------------------------------------------- /scripting/include/friendly.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/friendly.inc -------------------------------------------------------------------------------- /scripting/include/hashes.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripting/include/hgr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/hgr.inc -------------------------------------------------------------------------------- /scripting/include/json.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/json.inc -------------------------------------------------------------------------------- /scripting/include/json/decode_helpers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/json/decode_helpers.inc -------------------------------------------------------------------------------- /scripting/include/json/definitions.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/json/definitions.inc -------------------------------------------------------------------------------- /scripting/include/json/encode_helpers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/json/encode_helpers.inc -------------------------------------------------------------------------------- /scripting/include/json/object.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/json/object.inc -------------------------------------------------------------------------------- /scripting/include/json/string_helpers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/json/string_helpers.inc -------------------------------------------------------------------------------- /scripting/include/mckayupdater.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/mckayupdater.sp -------------------------------------------------------------------------------- /scripting/include/morecolors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/morecolors.inc -------------------------------------------------------------------------------- /scripting/include/multicolors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/multicolors.inc -------------------------------------------------------------------------------- /scripting/include/multicolors/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/multicolors/colors.inc -------------------------------------------------------------------------------- /scripting/include/multicolors/morecolors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/multicolors/morecolors.inc -------------------------------------------------------------------------------- /scripting/include/ngs_votes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/ngs_votes.inc -------------------------------------------------------------------------------- /scripting/include/ngsupdater.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/ngsupdater.inc -------------------------------------------------------------------------------- /scripting/include/ngsutils.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/ngsutils.inc -------------------------------------------------------------------------------- /scripting/include/ripext.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/ripext.inc -------------------------------------------------------------------------------- /scripting/include/ripext/http.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/ripext/http.inc -------------------------------------------------------------------------------- /scripting/include/ripext/json.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/ripext/json.inc -------------------------------------------------------------------------------- /scripting/include/scp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/scp.inc -------------------------------------------------------------------------------- /scripting/include/smac.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smac.inc -------------------------------------------------------------------------------- /scripting/include/smac_cvars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smac_cvars.inc -------------------------------------------------------------------------------- /scripting/include/smac_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smac_stocks.inc -------------------------------------------------------------------------------- /scripting/include/smac_wallhack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smac_wallhack.inc -------------------------------------------------------------------------------- /scripting/include/smartdm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smartdm.inc -------------------------------------------------------------------------------- /scripting/include/smjansson.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smjansson.inc -------------------------------------------------------------------------------- /scripting/include/smlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib.inc -------------------------------------------------------------------------------- /scripting/include/smlib/arrays.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/arrays.inc -------------------------------------------------------------------------------- /scripting/include/smlib/clients.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/clients.inc -------------------------------------------------------------------------------- /scripting/include/smlib/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/colors.inc -------------------------------------------------------------------------------- /scripting/include/smlib/concommands.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/concommands.inc -------------------------------------------------------------------------------- /scripting/include/smlib/convars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/convars.inc -------------------------------------------------------------------------------- /scripting/include/smlib/crypt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/crypt.inc -------------------------------------------------------------------------------- /scripting/include/smlib/debug.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/debug.inc -------------------------------------------------------------------------------- /scripting/include/smlib/dynarrays.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/dynarrays.inc -------------------------------------------------------------------------------- /scripting/include/smlib/edicts.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/edicts.inc -------------------------------------------------------------------------------- /scripting/include/smlib/effects.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/effects.inc -------------------------------------------------------------------------------- /scripting/include/smlib/entities.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/entities.inc -------------------------------------------------------------------------------- /scripting/include/smlib/files.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/files.inc -------------------------------------------------------------------------------- /scripting/include/smlib/game.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/game.inc -------------------------------------------------------------------------------- /scripting/include/smlib/general.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/general.inc -------------------------------------------------------------------------------- /scripting/include/smlib/math.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/math.inc -------------------------------------------------------------------------------- /scripting/include/smlib/menus.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/menus.inc -------------------------------------------------------------------------------- /scripting/include/smlib/server.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/server.inc -------------------------------------------------------------------------------- /scripting/include/smlib/sql.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/sql.inc -------------------------------------------------------------------------------- /scripting/include/smlib/strings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/strings.inc -------------------------------------------------------------------------------- /scripting/include/smlib/teams.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/teams.inc -------------------------------------------------------------------------------- /scripting/include/smlib/vehicles.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/vehicles.inc -------------------------------------------------------------------------------- /scripting/include/smlib/weapons.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/weapons.inc -------------------------------------------------------------------------------- /scripting/include/smlib/world.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/smlib/world.inc -------------------------------------------------------------------------------- /scripting/include/socket.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/socket.inc -------------------------------------------------------------------------------- /scripting/include/sourcebans.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/sourcebans.inc -------------------------------------------------------------------------------- /scripting/include/sourcebanspp.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/sourcebanspp.inc -------------------------------------------------------------------------------- /scripting/include/sourcecomms.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/sourcecomms.inc -------------------------------------------------------------------------------- /scripting/include/steamtools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/steamtools.inc -------------------------------------------------------------------------------- /scripting/include/steamtools.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/steamtools.sp -------------------------------------------------------------------------------- /scripting/include/store.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/store.inc -------------------------------------------------------------------------------- /scripting/include/store/store-backend.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/store/store-backend.inc -------------------------------------------------------------------------------- /scripting/include/store/store-core.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/store/store-core.inc -------------------------------------------------------------------------------- /scripting/include/store/store-inventory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/store/store-inventory.inc -------------------------------------------------------------------------------- /scripting/include/store/store-loadouts.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/store/store-loadouts.inc -------------------------------------------------------------------------------- /scripting/include/store/store-logging.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/store/store-logging.inc -------------------------------------------------------------------------------- /scripting/include/store/store-shop.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/store/store-shop.inc -------------------------------------------------------------------------------- /scripting/include/store/store-stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/store/store-stocks.inc -------------------------------------------------------------------------------- /scripting/include/system2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/system2.inc -------------------------------------------------------------------------------- /scripting/include/system2/legacy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/system2/legacy.inc -------------------------------------------------------------------------------- /scripting/include/system2/request.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/system2/request.inc -------------------------------------------------------------------------------- /scripting/include/tf2attributes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/tf2attributes.inc -------------------------------------------------------------------------------- /scripting/include/tf2idb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/tf2idb.inc -------------------------------------------------------------------------------- /scripting/include/tf2items.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/tf2items.inc -------------------------------------------------------------------------------- /scripting/include/timber.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/timber.inc -------------------------------------------------------------------------------- /scripting/include/unusual.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/unusual.inc -------------------------------------------------------------------------------- /scripting/include/updater.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/updater.inc -------------------------------------------------------------------------------- /scripting/include/validClient.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/validClient.inc -------------------------------------------------------------------------------- /scripting/include/vgui_motd_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/vgui_motd_stocks.inc -------------------------------------------------------------------------------- /scripting/include/webfix.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/webfix.inc -------------------------------------------------------------------------------- /scripting/include/websocket.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/websocket.inc -------------------------------------------------------------------------------- /scripting/include/weddings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/weddings.inc -------------------------------------------------------------------------------- /scripting/include/weddings/functions_general.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/weddings/functions_general.inc -------------------------------------------------------------------------------- /scripting/include/weddings/functions_marriages.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/weddings/functions_marriages.inc -------------------------------------------------------------------------------- /scripting/include/weddings/functions_natives.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/weddings/functions_natives.inc -------------------------------------------------------------------------------- /scripting/include/weddings/functions_proposals.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/weddings/functions_proposals.inc -------------------------------------------------------------------------------- /scripting/include/weddings/menu_handlers.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/weddings/menu_handlers.inc -------------------------------------------------------------------------------- /scripting/include/weddings/sql_queries.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/weddings/sql_queries.inc -------------------------------------------------------------------------------- /scripting/include/zombiereloaded.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/zombiereloaded.inc -------------------------------------------------------------------------------- /scripting/include/zr/class.zr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/zr/class.zr.inc -------------------------------------------------------------------------------- /scripting/include/zr/infect.zr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/zr/infect.zr.inc -------------------------------------------------------------------------------- /scripting/include/zr/respawn.zr.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/include/zr/respawn.zr.inc -------------------------------------------------------------------------------- /scripting/mvm/ngs_autoready.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/mvm/ngs_autoready.sp -------------------------------------------------------------------------------- /scripting/ngs_admin_toolkit.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_admin_toolkit.sp -------------------------------------------------------------------------------- /scripting/ngs_adminlist.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_adminlist.sp -------------------------------------------------------------------------------- /scripting/ngs_advert_antiflood.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_advert_antiflood.sp -------------------------------------------------------------------------------- /scripting/ngs_autorestart.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_autorestart.sp -------------------------------------------------------------------------------- /scripting/ngs_autowarnpunishr.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_autowarnpunishr.sp -------------------------------------------------------------------------------- /scripting/ngs_backpacktf.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_backpacktf.sp -------------------------------------------------------------------------------- /scripting/ngs_bacon.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_bacon.sp -------------------------------------------------------------------------------- /scripting/ngs_buildinghats.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_buildinghats.sp -------------------------------------------------------------------------------- /scripting/ngs_cccmysql.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_cccmysql.sp -------------------------------------------------------------------------------- /scripting/ngs_celebrateunusual.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_celebrateunusual.sp -------------------------------------------------------------------------------- /scripting/ngs_civilianmode.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_civilianmode.sp -------------------------------------------------------------------------------- /scripting/ngs_classmenu.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_classmenu.sp -------------------------------------------------------------------------------- /scripting/ngs_connect_reservedslots.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_connect_reservedslots.sp -------------------------------------------------------------------------------- /scripting/ngs_discordsuite.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_discordsuite.sp -------------------------------------------------------------------------------- /scripting/ngs_djsuite.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_djsuite.sp -------------------------------------------------------------------------------- /scripting/ngs_donor_toolkit.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_donor_toolkit.sp -------------------------------------------------------------------------------- /scripting/ngs_enabledisableplugins.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_enabledisableplugins.sp -------------------------------------------------------------------------------- /scripting/ngs_evilrocket.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_evilrocket.sp -------------------------------------------------------------------------------- /scripting/ngs_explosivearrows.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_explosivearrows.sp -------------------------------------------------------------------------------- /scripting/ngs_fixes.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_fixes.sp -------------------------------------------------------------------------------- /scripting/ngs_freeduels.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_freeduels.sp -------------------------------------------------------------------------------- /scripting/ngs_friendly.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_friendly.sp -------------------------------------------------------------------------------- /scripting/ngs_fysicscontrol.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_fysicscontrol.sp -------------------------------------------------------------------------------- /scripting/ngs_getping.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_getping.sp -------------------------------------------------------------------------------- /scripting/ngs_helpmenu.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_helpmenu.sp -------------------------------------------------------------------------------- /scripting/ngs_hgrlimiter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_hgrlimiter.sp -------------------------------------------------------------------------------- /scripting/ngs_hookgrabrope.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_hookgrabrope.sp -------------------------------------------------------------------------------- /scripting/ngs_instantrespawn.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_instantrespawn.sp -------------------------------------------------------------------------------- /scripting/ngs_kartify.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_kartify.sp -------------------------------------------------------------------------------- /scripting/ngs_killstreak.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_killstreak.sp -------------------------------------------------------------------------------- /scripting/ngs_lighttrails.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_lighttrails.sp -------------------------------------------------------------------------------- /scripting/ngs_map_teleporter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_map_teleporter.sp -------------------------------------------------------------------------------- /scripting/ngs_mgemod.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_mgemod.sp -------------------------------------------------------------------------------- /scripting/ngs_mutenonadmins.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_mutenonadmins.sp -------------------------------------------------------------------------------- /scripting/ngs_namechecker.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_namechecker.sp -------------------------------------------------------------------------------- /scripting/ngs_necromash.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_necromash.sp -------------------------------------------------------------------------------- /scripting/ngs_player_feedback.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_player_feedback.sp -------------------------------------------------------------------------------- /scripting/ngs_player_toolkit.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_player_toolkit.sp -------------------------------------------------------------------------------- /scripting/ngs_portalmod_gun.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_portalmod_gun.sp -------------------------------------------------------------------------------- /scripting/ngs_proxychecker.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_proxychecker.sp -------------------------------------------------------------------------------- /scripting/ngs_pyroairjump.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_pyroairjump.sp -------------------------------------------------------------------------------- /scripting/ngs_raffle.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_raffle.sp -------------------------------------------------------------------------------- /scripting/ngs_raffleannounce.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_raffleannounce.sp -------------------------------------------------------------------------------- /scripting/ngs_randomfilter.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_randomfilter.sp -------------------------------------------------------------------------------- /scripting/ngs_reserved_slots.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_reserved_slots.sp -------------------------------------------------------------------------------- /scripting/ngs_resizeplayers.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_resizeplayers.sp -------------------------------------------------------------------------------- /scripting/ngs_rtdpunisher.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_rtdpunisher.sp -------------------------------------------------------------------------------- /scripting/ngs_serverhop.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_serverhop.sp -------------------------------------------------------------------------------- /scripting/ngs_serverupdatechecker.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_serverupdatechecker.sp -------------------------------------------------------------------------------- /scripting/ngs_smarterspawns.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_smarterspawns.sp -------------------------------------------------------------------------------- /scripting/ngs_sourcesleuthaddon.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_sourcesleuthaddon.sp -------------------------------------------------------------------------------- /scripting/ngs_spawnmonoculus.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_spawnmonoculus.sp -------------------------------------------------------------------------------- /scripting/ngs_spawnprotection.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_spawnprotection.sp -------------------------------------------------------------------------------- /scripting/ngs_spycrab.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_spycrab.sp -------------------------------------------------------------------------------- /scripting/ngs_storestuff.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_storestuff.sp -------------------------------------------------------------------------------- /scripting/ngs_stuck.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_stuck.sp -------------------------------------------------------------------------------- /scripting/ngs_tauntmenu.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_tauntmenu.sp -------------------------------------------------------------------------------- /scripting/ngs_tf2fix.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_tf2fix.sp -------------------------------------------------------------------------------- /scripting/ngs_tf2items_giveweapon.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_tf2items_giveweapon.sp -------------------------------------------------------------------------------- /scripting/ngs_toggleweaponsounds.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_toggleweaponsounds.sp -------------------------------------------------------------------------------- /scripting/ngs_tradechat.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_tradechat.sp -------------------------------------------------------------------------------- /scripting/ngs_tradeprotect.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_tradeprotect.sp -------------------------------------------------------------------------------- /scripting/ngs_truedemocracy.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_truedemocracy.sp -------------------------------------------------------------------------------- /scripting/ngs_unusualtradeannouncer.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_unusualtradeannouncer.sp -------------------------------------------------------------------------------- /scripting/ngs_unusualweapons.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_unusualweapons.sp -------------------------------------------------------------------------------- /scripting/ngs_viprooms.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_viprooms.sp -------------------------------------------------------------------------------- /scripting/ngs_voicemenuthrottler.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_voicemenuthrottler.sp -------------------------------------------------------------------------------- /scripting/ngs_voicesofngs.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_voicesofngs.sp -------------------------------------------------------------------------------- /scripting/ngs_votemute.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_votemute.sp -------------------------------------------------------------------------------- /scripting/ngs_webshortcuts.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_webshortcuts.sp -------------------------------------------------------------------------------- /scripting/ngs_weddings.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/ngs_weddings.sp -------------------------------------------------------------------------------- /scripting/projectmann/ProjectMann.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/projectmann/ProjectMann.sp -------------------------------------------------------------------------------- /scripting/pugs/ngs_pugsuite.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/pugs/ngs_pugsuite.sp -------------------------------------------------------------------------------- /scripting/requests/ngs_perclassspecialmodels.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/requests/ngs_perclassspecialmodels.sp -------------------------------------------------------------------------------- /scripting/requests/ngs_zerogs_rtdpunisher.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/requests/ngs_zerogs_rtdpunisher.sp -------------------------------------------------------------------------------- /scripting/store-steambotcredits.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store-steambotcredits.sp -------------------------------------------------------------------------------- /scripting/store/store-backend.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-backend.sp -------------------------------------------------------------------------------- /scripting/store/store-bosses.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-bosses.sp -------------------------------------------------------------------------------- /scripting/store/store-chat.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-chat.sp -------------------------------------------------------------------------------- /scripting/store/store-commanditemshold.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-commanditemshold.sp -------------------------------------------------------------------------------- /scripting/store/store-core.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-core.sp -------------------------------------------------------------------------------- /scripting/store/store-distributor.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-distributor.sp -------------------------------------------------------------------------------- /scripting/store/store-gambling.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-gambling.sp -------------------------------------------------------------------------------- /scripting/store/store-gifting.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-gifting.sp -------------------------------------------------------------------------------- /scripting/store/store-inventory.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-inventory.sp -------------------------------------------------------------------------------- /scripting/store/store-killawards.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-killawards.sp -------------------------------------------------------------------------------- /scripting/store/store-loadouts.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-loadouts.sp -------------------------------------------------------------------------------- /scripting/store/store-logging.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-logging.sp -------------------------------------------------------------------------------- /scripting/store/store-refunds.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-refunds.sp -------------------------------------------------------------------------------- /scripting/store/store-shop.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-shop.sp -------------------------------------------------------------------------------- /scripting/store/store-steamgroupcredits.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-steamgroupcredits.sp -------------------------------------------------------------------------------- /scripting/store/store-trails.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/store/store-trails.sp -------------------------------------------------------------------------------- /scripting/toggle_weapon_sounds_clientprefs.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/scripting/toggle_weapon_sounds_clientprefs.sp -------------------------------------------------------------------------------- /smac/GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/GPLv3.txt -------------------------------------------------------------------------------- /smac/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/LICENSE.txt -------------------------------------------------------------------------------- /smac/plugins/smac.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac.smx -------------------------------------------------------------------------------- /smac/plugins/smac_aimbot.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_aimbot.smx -------------------------------------------------------------------------------- /smac/plugins/smac_autotrigger.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_autotrigger.smx -------------------------------------------------------------------------------- /smac/plugins/smac_client.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_client.smx -------------------------------------------------------------------------------- /smac/plugins/smac_commands.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_commands.smx -------------------------------------------------------------------------------- /smac/plugins/smac_css_antiflash.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_css_antiflash.smx -------------------------------------------------------------------------------- /smac/plugins/smac_css_antismoke.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_css_antismoke.smx -------------------------------------------------------------------------------- /smac/plugins/smac_css_fixes.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_css_fixes.smx -------------------------------------------------------------------------------- /smac/plugins/smac_cvars.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_cvars.smx -------------------------------------------------------------------------------- /smac/plugins/smac_eac_banlist.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_eac_banlist.smx -------------------------------------------------------------------------------- /smac/plugins/smac_esea_banlist.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_esea_banlist.smx -------------------------------------------------------------------------------- /smac/plugins/smac_eyetest.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_eyetest.smx -------------------------------------------------------------------------------- /smac/plugins/smac_hl2dm_fixes.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_hl2dm_fixes.smx -------------------------------------------------------------------------------- /smac/plugins/smac_l4d2_fixes.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_l4d2_fixes.smx -------------------------------------------------------------------------------- /smac/plugins/smac_rcon.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_rcon.smx -------------------------------------------------------------------------------- /smac/plugins/smac_speedhack.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_speedhack.smx -------------------------------------------------------------------------------- /smac/plugins/smac_spinhack.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_spinhack.smx -------------------------------------------------------------------------------- /smac/plugins/smac_wallhack.smx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/plugins/smac_wallhack.smx -------------------------------------------------------------------------------- /smac/scripting/include/colors.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/include/colors.inc -------------------------------------------------------------------------------- /smac/scripting/include/smac.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/include/smac.inc -------------------------------------------------------------------------------- /smac/scripting/include/smac_cvars.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/include/smac_cvars.inc -------------------------------------------------------------------------------- /smac/scripting/include/smac_stocks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/include/smac_stocks.inc -------------------------------------------------------------------------------- /smac/scripting/include/smac_wallhack.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/include/smac_wallhack.inc -------------------------------------------------------------------------------- /smac/scripting/include/socket.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/include/socket.inc -------------------------------------------------------------------------------- /smac/scripting/smac.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac.sp -------------------------------------------------------------------------------- /smac/scripting/smac_aimbot.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_aimbot.sp -------------------------------------------------------------------------------- /smac/scripting/smac_autotrigger.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_autotrigger.sp -------------------------------------------------------------------------------- /smac/scripting/smac_client.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_client.sp -------------------------------------------------------------------------------- /smac/scripting/smac_commands.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_commands.sp -------------------------------------------------------------------------------- /smac/scripting/smac_css_antiflash.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_css_antiflash.sp -------------------------------------------------------------------------------- /smac/scripting/smac_css_antismoke.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_css_antismoke.sp -------------------------------------------------------------------------------- /smac/scripting/smac_css_fixes.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_css_fixes.sp -------------------------------------------------------------------------------- /smac/scripting/smac_cvars.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_cvars.sp -------------------------------------------------------------------------------- /smac/scripting/smac_eac_banlist.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_eac_banlist.sp -------------------------------------------------------------------------------- /smac/scripting/smac_esea_banlist.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_esea_banlist.sp -------------------------------------------------------------------------------- /smac/scripting/smac_eyetest.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_eyetest.sp -------------------------------------------------------------------------------- /smac/scripting/smac_hl2dm_fixes.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_hl2dm_fixes.sp -------------------------------------------------------------------------------- /smac/scripting/smac_l4d2_fixes.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_l4d2_fixes.sp -------------------------------------------------------------------------------- /smac/scripting/smac_rcon.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_rcon.sp -------------------------------------------------------------------------------- /smac/scripting/smac_speedhack.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_speedhack.sp -------------------------------------------------------------------------------- /smac/scripting/smac_spinhack.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_spinhack.sp -------------------------------------------------------------------------------- /smac/scripting/smac_wallhack.sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/scripting/smac_wallhack.sp -------------------------------------------------------------------------------- /smac/translations/cze/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/cze/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/da/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/da/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/de/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/de/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/es/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/es/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/fi/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/fi/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/fr/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/fr/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/he/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/he/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/hu/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/hu/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/it/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/it/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/ko/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/ko/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/lt/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/lt/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/nl/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/nl/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/no/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/no/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/pl/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/pl/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/pt/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/pt/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/ru/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/ru/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/sk/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/sk/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/smac.phrases.txt -------------------------------------------------------------------------------- /smac/translations/sv/smac.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/smac/translations/sv/smac.phrases.txt -------------------------------------------------------------------------------- /sound/ngs/unusualcelebration/Sf13_bcon_misc17.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/sound/ngs/unusualcelebration/Sf13_bcon_misc17.wav -------------------------------------------------------------------------------- /translations/afk_manager.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/translations/afk_manager.phrases.txt -------------------------------------------------------------------------------- /translations/backpack-tf.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/translations/backpack-tf.phrases.txt -------------------------------------------------------------------------------- /translations/free_duels.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/translations/free_duels.phrases.txt -------------------------------------------------------------------------------- /translations/serverhop.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/translations/serverhop.phrases.txt -------------------------------------------------------------------------------- /translations/store.killawards.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/translations/store.killawards.txt -------------------------------------------------------------------------------- /translations/store.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/translations/store.phrases.txt -------------------------------------------------------------------------------- /translations/tradechat.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/translations/tradechat.phrases.txt -------------------------------------------------------------------------------- /translations/weddings.phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/translations/weddings.phrases.txt -------------------------------------------------------------------------------- /updater/ngs_admin_toolkit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_admin_toolkit.txt -------------------------------------------------------------------------------- /updater/ngs_adminlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_adminlist.txt -------------------------------------------------------------------------------- /updater/ngs_advert_antiflood.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_advert_antiflood.txt -------------------------------------------------------------------------------- /updater/ngs_autorestart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_autorestart.txt -------------------------------------------------------------------------------- /updater/ngs_backpacktf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_backpacktf.txt -------------------------------------------------------------------------------- /updater/ngs_buildinghats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_buildinghats.txt -------------------------------------------------------------------------------- /updater/ngs_cccmysql.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_cccmysql.txt -------------------------------------------------------------------------------- /updater/ngs_celebrateunusual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_celebrateunusual.txt -------------------------------------------------------------------------------- /updater/ngs_civilianmode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_civilianmode.txt -------------------------------------------------------------------------------- /updater/ngs_connect_reservedslots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_connect_reservedslots.txt -------------------------------------------------------------------------------- /updater/ngs_discordsuite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_discordsuite.txt -------------------------------------------------------------------------------- /updater/ngs_djsuite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_djsuite.txt -------------------------------------------------------------------------------- /updater/ngs_donor_toolkit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_donor_toolkit.txt -------------------------------------------------------------------------------- /updater/ngs_enabledisableplugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_enabledisableplugins.txt -------------------------------------------------------------------------------- /updater/ngs_evilrocket.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_evilrocket.txt -------------------------------------------------------------------------------- /updater/ngs_explosivearrows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_explosivearrows.txt -------------------------------------------------------------------------------- /updater/ngs_fixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_fixes.txt -------------------------------------------------------------------------------- /updater/ngs_freeduels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_freeduels.txt -------------------------------------------------------------------------------- /updater/ngs_friendly.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_friendly.txt -------------------------------------------------------------------------------- /updater/ngs_getping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_getping.txt -------------------------------------------------------------------------------- /updater/ngs_helpmenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_helpmenu.txt -------------------------------------------------------------------------------- /updater/ngs_hgrlimiter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_hgrlimiter.txt -------------------------------------------------------------------------------- /updater/ngs_kartify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_kartify.txt -------------------------------------------------------------------------------- /updater/ngs_killstreak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_killstreak.txt -------------------------------------------------------------------------------- /updater/ngs_lighttrails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_lighttrails.txt -------------------------------------------------------------------------------- /updater/ngs_map_teleporter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_map_teleporter.txt -------------------------------------------------------------------------------- /updater/ngs_necromash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_necromash.txt -------------------------------------------------------------------------------- /updater/ngs_player_feedback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_player_feedback.txt -------------------------------------------------------------------------------- /updater/ngs_player_toolkit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_player_toolkit.txt -------------------------------------------------------------------------------- /updater/ngs_proxychecker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_proxychecker.txt -------------------------------------------------------------------------------- /updater/ngs_raffle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_raffle.txt -------------------------------------------------------------------------------- /updater/ngs_raffleannounce.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_raffleannounce.txt -------------------------------------------------------------------------------- /updater/ngs_randomfilter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_randomfilter.txt -------------------------------------------------------------------------------- /updater/ngs_resizeplayers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_resizeplayers.txt -------------------------------------------------------------------------------- /updater/ngs_rtdpunisher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_rtdpunisher.txt -------------------------------------------------------------------------------- /updater/ngs_serverhop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_serverhop.txt -------------------------------------------------------------------------------- /updater/ngs_serverupdatechecker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_serverupdatechecker.txt -------------------------------------------------------------------------------- /updater/ngs_spycrab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_spycrab.txt -------------------------------------------------------------------------------- /updater/ngs_steamrepchecker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_steamrepchecker.txt -------------------------------------------------------------------------------- /updater/ngs_storestuff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_storestuff.txt -------------------------------------------------------------------------------- /updater/ngs_stuck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_stuck.txt -------------------------------------------------------------------------------- /updater/ngs_tauntmenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_tauntmenu.txt -------------------------------------------------------------------------------- /updater/ngs_tf2fix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_tf2fix.txt -------------------------------------------------------------------------------- /updater/ngs_tf2items_giveweapon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_tf2items_giveweapon.txt -------------------------------------------------------------------------------- /updater/ngs_tradechat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_tradechat.txt -------------------------------------------------------------------------------- /updater/ngs_tradeprotect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_tradeprotect.txt -------------------------------------------------------------------------------- /updater/ngs_voicemenuthrottler.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_voicemenuthrottler.txt -------------------------------------------------------------------------------- /updater/ngs_votemute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_votemute.txt -------------------------------------------------------------------------------- /updater/ngs_webshortcuts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NGSNetwork/sm-plugins/HEAD/updater/ngs_webshortcuts.txt --------------------------------------------------------------------------------