├── .gitattributes ├── .gitignore ├── AIO - Winter Plugin ├── AIO_Winter.sma ├── configs │ └── AIO_Winter.cfg ├── models │ └── aio_winter │ │ ├── christmas_tree_1.mdl │ │ ├── christmas_tree_2.mdl │ │ ├── frost_man.mdl │ │ ├── p_candycane.mdl │ │ ├── p_xmasgrenade.mdl │ │ ├── present_1.mdl │ │ ├── present_2.mdl │ │ ├── present_3.mdl │ │ ├── santahat.mdl │ │ ├── santahat_2.mdl │ │ ├── snowman.mdl │ │ ├── v_candycane.mdl │ │ ├── v_xmasgrenade.mdl │ │ └── w_xmasgrenade.mdl └── sound │ └── aio_winter │ ├── bmb_defused_santa.wav │ ├── bmb_exploded_santa.wav │ ├── bmb_planted_santa.wav │ └── merry_christmas.wav ├── Admin Explode └── AdminExplode.sma ├── Admins List Menu └── admins_list.sma ├── Advanced Gag by tuty └── AdvancedGagTuty.sma ├── Advanced Scroll Message └── Advanced_Scroll_Message.sma ├── Advanced colored Chat └── AdvancedColoredChat.sma ├── Aflock Kamikaze └── AflockKamikaze.sma ├── All Snipers Crosshair └── all_snipers_crosshair.sma ├── Amx Bloody Slap ├── amx_bloodyslap.sma └── amx_bloodyslap.txt ├── Build dispenser ├── BuildDispenser.sma └── models │ └── dispenser.mdl ├── C4 Drop Menu ├── C4_Drop_Menu.sma └── c4_drop_menu.txt ├── Cool MapChooser └── mapchooser.sma ├── DOD CharactersMod ├── DOD_CharactersMod.sma └── dod_cm.cfg ├── DR Stats └── PluginCareLaiCerut.sma ├── DR VIP ├── VIP.sma └── models │ └── viphats │ ├── Spartan.mdl │ ├── awesome.mdl │ ├── darth.mdl │ ├── devil2.mdl │ ├── dunce.mdl │ ├── headphones.mdl │ ├── hellokitty.mdl │ ├── jackjack.mdl │ ├── jackolantern.mdl │ ├── lemonhead.mdl │ ├── magic.mdl │ ├── mau5.mdl │ ├── popeye.mdl │ ├── vendetta.mdl │ └── viking.mdl ├── Deagle Nail Launcher [UPDATED] ├── deagle_nail_launcher.sma ├── deagle_nail_launcher_v2_8.sma ├── models │ └── nail.mdl └── sound │ └── misc │ └── spike1.wav ├── Deathrun Achievements [working but no PHP page yet] └── DeathrunAchievements.sma ├── Deathrun Bhop └── Bhop.sma ├── Deathrun Duel Coooool ├── DeathrunDuel.sma └── drduel │ ├── drduel.wav │ └── drduel.wav.ztmp ├── Deathrun Good Semiclip └── DeathrunSemiclip.sma ├── Deathrun Kick AFK └── DrKickAfk.sma ├── Deathrun Life Transfer ├── LifeTransfer.sma └── includes │ └── colorchat.inc ├── Deathrun Shop [4.0 Final] ├── DeathrunShopLang.txt ├── DeathrunShop_Cfg.cfg └── Deathrun_Shop.sma ├── Disco Smoke Grenade ├── DiscoSmokeGrenade.sma └── disco.wav ├── Dr Shop like myRun └── DrShop.sma ├── Drop Nightvision Goggles ├── dropnvg.sma ├── dropnvg.txt └── models │ └── w_nvg.mdl ├── ESF Admin Giver └── esf_AdminGiver.sma ├── ESF Admin Unlimited KI └── ESF_Admin_UnlimitedKI.sma ├── ESF Glow By Weapon └── ESF_Glow_By_Weapon.sma ├── ESF Mr Satan ├── models │ └── player │ │ └── satan │ │ └── satan.mdl ├── mr_satan.sma └── sound │ └── satan │ ├── s_3.wav │ └── w_1.wav ├── ESF PACC └── ESF_PACC.sma ├── ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X] ├── ESF.Specials.sma ├── models │ └── ESFSpecials │ │ ├── bodypart.mdl │ │ ├── dragonhead.mdl │ │ ├── selfdestruct.mdl │ │ ├── ultimatesacrifice.mdl │ │ └── white_sphere.mdl ├── sound │ └── ESFSpecials │ │ ├── angryblast.wav │ │ ├── bodypart.wav │ │ ├── excuseme.wav │ │ ├── kaioswoop.wav │ │ ├── regenerate.wav │ │ ├── ryuken.wav │ │ ├── selfdestruction.wav │ │ ├── superkaioken.wav │ │ └── ultimatesacrifice.wav └── sprites │ └── ESFSpecials │ └── kaiokentrail.spr ├── ESF Swoop Trail └── ESF.SwoopTrail.sma ├── ESF Taunts ├── ESFTaunts.sma ├── includes │ └── esf_util.inc └── sound │ └── t_taunt │ ├── buu │ ├── btaunt1.wav │ ├── btaunt2.wav │ ├── btaunt3.wav │ └── btaunt4.wav │ ├── cell │ ├── ctaunt1.wav │ ├── ctaunt2.wav │ ├── ctaunt3.wav │ └── ctaunt4.wav │ ├── frieza │ ├── ftaunt1.wav │ ├── ftaunt2.wav │ ├── ftaunt3.wav │ └── ftaunt4.wav │ ├── gohan │ ├── gotaunt1.wav │ ├── gotaunt2.wav │ ├── gotaunt3.wav │ └── gotaunt4.wav │ ├── goku │ ├── gtaunt1.wav │ ├── gtaunt2.wav │ ├── gtaunt3.wav │ └── gtaunt4.wav │ ├── krillin │ ├── ktaunt1.wav │ ├── ktaunt2.wav │ ├── ktaunt3.wav │ └── ktaunt4.wav │ ├── piccolo │ ├── ptaunt1.wav │ ├── ptaunt2.wav │ ├── ptaunt3.wav │ └── ptaunt4.wav │ ├── trunks │ ├── trtaunt1.wav │ ├── trtaunt2.wav │ ├── trtaunt3.wav │ └── trtaunt4.wav │ └── vegeta │ ├── vtaunt1.wav │ ├── vtaunt2.wav │ ├── vtaunt3.wav │ └── vtaunt4.wav ├── ESF debug plugins ├── BlockClassMenu.sma └── DEBUGTest.sma ├── Exterminate by tuty └── ExterminateByTuty.sma ├── Fantasy Capture The Flag [IN PROGRESS] ├── FantasyCTF.sma ├── models │ └── fantasyctf │ │ ├── back_blueflag.mdl │ │ ├── back_redflag.mdl │ │ ├── blue_flag.mdl │ │ └── red_flag.mdl ├── plugin addons │ ├── adrenaline.sma │ ├── heal.sma │ ├── motionsensor.sma │ └── wallclimb.sma └── sound │ └── fantasyctf │ ├── blue_flag_dropped.mp3 │ ├── blue_flag_taken.mp3 │ ├── blue_team_scores.mp3 │ ├── red_flag_dropped.mp3 │ ├── red_flag_taken.mp3 │ └── red_team_scores.mp3 ├── Free Defuser Kit └── FreeDefuserkit.sma ├── Funny HL Sounds ├── FHS.ini ├── FHS.sma └── FHS.txt ├── HL Weapons Floating └── HL_WeaponFloating.sma ├── Half-Life Give Items And Weapons ├── HL_GiveWeapons.sma └── HL_GiveWeapons_byConnorMcLeod.sma ├── Half-life Stats T ├── HLStatsT.sma └── hlstatst │ ├── hlstatst_godlike.wav │ ├── hlstatst_holyshit.wav │ ├── hlstatst_killingspree.wav │ ├── hlstatst_ludicrouskill.wav │ ├── hlstatst_megakill.wav │ ├── hlstatst_monsterkill.wav │ ├── hlstatst_multikill.wav │ ├── hlstatst_rampage.wav │ └── hlstatst_ultrakill.wav ├── Healthkit on dead body └── kit_on_body.sma ├── Italy Chicken Killer └── ItalyChickenKiller.sma ├── Knife Hit Decal └── KnifeHitDecal.sma ├── LIVEChat ├── Web php │ └── live │ │ ├── Scripts │ │ ├── expressInstall.swf │ │ └── swfobject_modified.js │ │ ├── config.php │ │ ├── header_v8.swf │ │ ├── images │ │ ├── banner.png │ │ ├── menu.png │ │ ├── partners.png │ │ └── top.png │ │ ├── index.php │ │ ├── loading.gif │ │ ├── response.php │ │ └── style.css ├── configs │ └── LIVEChat.cfg └── scripting │ └── LIVE_Chat.sma ├── Light SmokeGrenade └── LightSmokeGrenade.sma ├── Loading Menu ├── GameMenu.ini ├── LoadingMenu.sma └── exemplu.PNG ├── Mario Coins ├── MarioCoins.sma ├── models │ └── MarioCoins │ │ └── mario_coin.mdl └── sound │ └── MarioCoins │ ├── coingained.wav │ ├── lifegained.wav │ └── respawned.wav ├── No DROWN in Water └── no_drown.sma ├── Novuslink Radio └── Radio.sma ├── Novuslink Redirect Stats └── NovusLinkRedirectSTATS.sma ├── Plugins for Biohazard by Cheap_suit ├── BHZDKit.sma ├── bio_headcrab.sma ├── bio_zombiescanner.sma ├── bio_zombietaunts.sma ├── biohazard │ ├── braaains.wav │ ├── brains.wav │ ├── brains2.wav │ ├── feeed.wav │ ├── join2.wav │ ├── joinusss.wav │ └── mustfeed.wav └── sprites │ └── healKIT.spr ├── Quest Mod v9.9.9 for MAPPING.RO ├── models │ ├── frostnova.mdl │ ├── liukangfb.mdl │ ├── roots2.mdl │ └── royal │ │ ├── v_fireman.mdl │ │ ├── v_flash.mdl │ │ ├── v_hulk.mdl │ │ ├── v_liukang.mdl │ │ ├── v_medic.mdl │ │ ├── v_mutant2.mdl │ │ ├── v_night.mdl │ │ ├── v_ninja2.mdl │ │ ├── v_predator.mdl │ │ ├── v_reptile.mdl │ │ ├── v_scientist2.mdl │ │ ├── v_scorpion.mdl │ │ ├── v_spectru.mdl │ │ ├── v_storm.mdl │ │ ├── v_subzero.mdl │ │ ├── v_weed.mdl │ │ └── v_wolf.mdl ├── scripting │ ├── QuestMod.sma │ └── QuestMod │ │ ├── Commands.inl │ │ ├── Constants.inl │ │ ├── Cvars.inl │ │ ├── EffectStocks.inl │ │ ├── Events.inl │ │ ├── HalfLifePrecache.inl │ │ ├── KnifePrecache.inl │ │ └── Menus.inl └── sprites │ └── heal.spr ├── README.md ├── Random Nades └── RandomNades.sma ├── Random Players Glow └── RandomPlayers_Glow.sma ├── Random Skies └── randomskies.sma ├── Shockwave Flashbang └── ShockWaveFB.sma ├── Simple Gore by tuty └── GoreTuty.sma ├── Simple Respawn └── SimpleRespawn.sma ├── Skeletons └── skeletons.sma ├── Solar Flash └── solar_flash.sma ├── Spider Man └── SpiderMan.sma ├── Spider_man └── SpiderMan.sma ├── Star Wars by tuty └── StarWars.sma ├── Super Predator by tuty ├── Descriere.txt ├── PredatorTuty.sma ├── colorchat.inc ├── models │ ├── player │ │ └── predator │ │ │ └── predator.mdl │ ├── predator_disk.mdl │ └── v_predator_hands.mdl ├── sound │ └── predator │ │ ├── plasma_explosion.wav │ │ ├── predator_damage1.wav │ │ ├── predator_damage2.wav │ │ ├── predator_damage3.WAV │ │ ├── predator_die.wav │ │ ├── predator_die2.wav │ │ ├── predator_die3.wav │ │ ├── predator_die4.WAV │ │ ├── predator_dirtpound.wav │ │ ├── predator_growl.wav │ │ ├── predator_idle.wav │ │ ├── predator_idle2.wav │ │ ├── predator_idle3.wav │ │ ├── predator_plasmafire.wav │ │ ├── predator_scream.wav │ │ └── predator_visionchange.wav └── sprites │ └── plasma.spr ├── Surf Ski 2 Admin Menu ├── SurfSki2_AdminMenu.sma └── surfski2_adminmenu.txt ├── Tag Name └── TagName.sma ├── Team Icon Spr ├── Team_Spr.sma ├── Team_Spr_v105.sma ├── sprites │ └── teamspr │ │ ├── ct_blue.spr │ │ └── t_red.spr └── teamspr.txt ├── Thunder Kill └── ThunderKill.sma ├── Trails └── Trails.sma ├── Tutys Jetpack ├── TutyJetpack.sma ├── TutyJetpack.txt └── models │ └── p_longjump.mdl ├── Vampire └── vampire.sma ├── Volley Ball Mod ├── VolleyBallMod.sma ├── configs │ └── VolleyBall.cfg ├── lang │ └── VolleyBall.txt ├── models │ ├── VolleyBallMod │ │ └── volleyball1.mdl │ ├── asteroid2.mdl │ ├── camera.mdl │ ├── p_volleyhands.mdl │ ├── player │ │ ├── volleyct │ │ │ └── volleyct.mdl │ │ └── volleyte │ │ │ └── volleyte.mdl │ └── v_volleybhands.mdl └── sound │ └── VolleyBallMod │ ├── bart.wav │ ├── boing.wav │ ├── boomchakalaka.WAV │ ├── hoho.wav │ ├── mhaha.wav │ ├── tazrazz.wav │ ├── whoa.wav │ └── yeahbaby.wav ├── Vomit ├── Vomit.sma └── sounds │ └── misc │ └── vomit.wav ├── Vote Restart └── Vote_Restart.sma ├── WAR Pause Game ├── Instructiuni.txt ├── Plugin_Pause.sma ├── lang │ └── time_length.txt └── poze │ ├── oprit.PNG │ └── pornit.PNG ├── Weapon Name Replacer ├── wnr.ini └── wnr.sma ├── Who Is Driving └── who_is_driving.sma ├── Winner of The Game ├── WinnerOfTheGame.sma └── misc │ ├── 1frag.wav │ ├── 2frags.wav │ └── 3frags.wav ├── [HL] Give Items and Weapons ├── HL_GiveWeapons.sma └── HL_GiveWeapons_byConnorMcLeod.sma ├── [post] Message Type ├── PostMessage.sma └── postmessage.txt └── ka_roadwars BuyTeleport └── ka_roadwars_buyteleport.sma /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/.gitignore -------------------------------------------------------------------------------- /AIO - Winter Plugin/AIO_Winter.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/AIO_Winter.sma -------------------------------------------------------------------------------- /AIO - Winter Plugin/configs/AIO_Winter.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/configs/AIO_Winter.cfg -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/christmas_tree_1.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/christmas_tree_1.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/christmas_tree_2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/christmas_tree_2.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/frost_man.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/frost_man.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/p_candycane.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/p_candycane.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/p_xmasgrenade.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/p_xmasgrenade.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/present_1.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/present_1.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/present_2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/present_2.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/present_3.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/present_3.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/santahat.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/santahat.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/santahat_2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/santahat_2.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/snowman.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/snowman.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/v_candycane.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/v_candycane.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/v_xmasgrenade.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/v_xmasgrenade.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/models/aio_winter/w_xmasgrenade.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/models/aio_winter/w_xmasgrenade.mdl -------------------------------------------------------------------------------- /AIO - Winter Plugin/sound/aio_winter/bmb_defused_santa.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/sound/aio_winter/bmb_defused_santa.wav -------------------------------------------------------------------------------- /AIO - Winter Plugin/sound/aio_winter/bmb_exploded_santa.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/sound/aio_winter/bmb_exploded_santa.wav -------------------------------------------------------------------------------- /AIO - Winter Plugin/sound/aio_winter/bmb_planted_santa.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/sound/aio_winter/bmb_planted_santa.wav -------------------------------------------------------------------------------- /AIO - Winter Plugin/sound/aio_winter/merry_christmas.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/AIO - Winter Plugin/sound/aio_winter/merry_christmas.wav -------------------------------------------------------------------------------- /Admin Explode/AdminExplode.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Admin Explode/AdminExplode.sma -------------------------------------------------------------------------------- /Admins List Menu/admins_list.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Admins List Menu/admins_list.sma -------------------------------------------------------------------------------- /Advanced Gag by tuty/AdvancedGagTuty.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Advanced Gag by tuty/AdvancedGagTuty.sma -------------------------------------------------------------------------------- /Advanced Scroll Message/Advanced_Scroll_Message.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Advanced Scroll Message/Advanced_Scroll_Message.sma -------------------------------------------------------------------------------- /Advanced colored Chat/AdvancedColoredChat.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Advanced colored Chat/AdvancedColoredChat.sma -------------------------------------------------------------------------------- /Aflock Kamikaze/AflockKamikaze.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Aflock Kamikaze/AflockKamikaze.sma -------------------------------------------------------------------------------- /All Snipers Crosshair/all_snipers_crosshair.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/All Snipers Crosshair/all_snipers_crosshair.sma -------------------------------------------------------------------------------- /Amx Bloody Slap/amx_bloodyslap.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Amx Bloody Slap/amx_bloodyslap.sma -------------------------------------------------------------------------------- /Amx Bloody Slap/amx_bloodyslap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Amx Bloody Slap/amx_bloodyslap.txt -------------------------------------------------------------------------------- /Build dispenser/BuildDispenser.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Build dispenser/BuildDispenser.sma -------------------------------------------------------------------------------- /Build dispenser/models/dispenser.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Build dispenser/models/dispenser.mdl -------------------------------------------------------------------------------- /C4 Drop Menu/C4_Drop_Menu.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/C4 Drop Menu/C4_Drop_Menu.sma -------------------------------------------------------------------------------- /C4 Drop Menu/c4_drop_menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/C4 Drop Menu/c4_drop_menu.txt -------------------------------------------------------------------------------- /Cool MapChooser/mapchooser.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Cool MapChooser/mapchooser.sma -------------------------------------------------------------------------------- /DOD CharactersMod/DOD_CharactersMod.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DOD CharactersMod/DOD_CharactersMod.sma -------------------------------------------------------------------------------- /DOD CharactersMod/dod_cm.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DOD CharactersMod/dod_cm.cfg -------------------------------------------------------------------------------- /DR Stats/PluginCareLaiCerut.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR Stats/PluginCareLaiCerut.sma -------------------------------------------------------------------------------- /DR VIP/VIP.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/VIP.sma -------------------------------------------------------------------------------- /DR VIP/models/viphats/Spartan.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/Spartan.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/awesome.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/awesome.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/darth.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/darth.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/devil2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/devil2.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/dunce.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/dunce.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/headphones.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/headphones.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/hellokitty.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/hellokitty.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/jackjack.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/jackjack.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/jackolantern.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/jackolantern.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/lemonhead.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/lemonhead.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/magic.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/magic.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/mau5.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/mau5.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/popeye.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/popeye.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/vendetta.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/vendetta.mdl -------------------------------------------------------------------------------- /DR VIP/models/viphats/viking.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/DR VIP/models/viphats/viking.mdl -------------------------------------------------------------------------------- /Deagle Nail Launcher [UPDATED]/deagle_nail_launcher.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deagle Nail Launcher [UPDATED]/deagle_nail_launcher.sma -------------------------------------------------------------------------------- /Deagle Nail Launcher [UPDATED]/deagle_nail_launcher_v2_8.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deagle Nail Launcher [UPDATED]/deagle_nail_launcher_v2_8.sma -------------------------------------------------------------------------------- /Deagle Nail Launcher [UPDATED]/models/nail.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deagle Nail Launcher [UPDATED]/models/nail.mdl -------------------------------------------------------------------------------- /Deagle Nail Launcher [UPDATED]/sound/misc/spike1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deagle Nail Launcher [UPDATED]/sound/misc/spike1.wav -------------------------------------------------------------------------------- /Deathrun Achievements [working but no PHP page yet]/DeathrunAchievements.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Achievements [working but no PHP page yet]/DeathrunAchievements.sma -------------------------------------------------------------------------------- /Deathrun Bhop/Bhop.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Bhop/Bhop.sma -------------------------------------------------------------------------------- /Deathrun Duel Coooool/DeathrunDuel.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Duel Coooool/DeathrunDuel.sma -------------------------------------------------------------------------------- /Deathrun Duel Coooool/drduel/drduel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Duel Coooool/drduel/drduel.wav -------------------------------------------------------------------------------- /Deathrun Duel Coooool/drduel/drduel.wav.ztmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Duel Coooool/drduel/drduel.wav.ztmp -------------------------------------------------------------------------------- /Deathrun Good Semiclip/DeathrunSemiclip.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Good Semiclip/DeathrunSemiclip.sma -------------------------------------------------------------------------------- /Deathrun Kick AFK/DrKickAfk.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Kick AFK/DrKickAfk.sma -------------------------------------------------------------------------------- /Deathrun Life Transfer/LifeTransfer.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Life Transfer/LifeTransfer.sma -------------------------------------------------------------------------------- /Deathrun Life Transfer/includes/colorchat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Life Transfer/includes/colorchat.inc -------------------------------------------------------------------------------- /Deathrun Shop [4.0 Final]/DeathrunShopLang.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Shop [4.0 Final]/DeathrunShopLang.txt -------------------------------------------------------------------------------- /Deathrun Shop [4.0 Final]/DeathrunShop_Cfg.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Shop [4.0 Final]/DeathrunShop_Cfg.cfg -------------------------------------------------------------------------------- /Deathrun Shop [4.0 Final]/Deathrun_Shop.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Deathrun Shop [4.0 Final]/Deathrun_Shop.sma -------------------------------------------------------------------------------- /Disco Smoke Grenade/DiscoSmokeGrenade.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Disco Smoke Grenade/DiscoSmokeGrenade.sma -------------------------------------------------------------------------------- /Disco Smoke Grenade/disco.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Disco Smoke Grenade/disco.wav -------------------------------------------------------------------------------- /Dr Shop like myRun/DrShop.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Dr Shop like myRun/DrShop.sma -------------------------------------------------------------------------------- /Drop Nightvision Goggles/dropnvg.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Drop Nightvision Goggles/dropnvg.sma -------------------------------------------------------------------------------- /Drop Nightvision Goggles/dropnvg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Drop Nightvision Goggles/dropnvg.txt -------------------------------------------------------------------------------- /Drop Nightvision Goggles/models/w_nvg.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Drop Nightvision Goggles/models/w_nvg.mdl -------------------------------------------------------------------------------- /ESF Admin Giver/esf_AdminGiver.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Admin Giver/esf_AdminGiver.sma -------------------------------------------------------------------------------- /ESF Admin Unlimited KI/ESF_Admin_UnlimitedKI.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Admin Unlimited KI/ESF_Admin_UnlimitedKI.sma -------------------------------------------------------------------------------- /ESF Glow By Weapon/ESF_Glow_By_Weapon.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Glow By Weapon/ESF_Glow_By_Weapon.sma -------------------------------------------------------------------------------- /ESF Mr Satan/models/player/satan/satan.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Mr Satan/models/player/satan/satan.mdl -------------------------------------------------------------------------------- /ESF Mr Satan/mr_satan.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Mr Satan/mr_satan.sma -------------------------------------------------------------------------------- /ESF Mr Satan/sound/satan/s_3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Mr Satan/sound/satan/s_3.wav -------------------------------------------------------------------------------- /ESF Mr Satan/sound/satan/w_1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Mr Satan/sound/satan/w_1.wav -------------------------------------------------------------------------------- /ESF PACC/ESF_PACC.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF PACC/ESF_PACC.sma -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/ESF.Specials.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/ESF.Specials.sma -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/models/ESFSpecials/bodypart.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/models/ESFSpecials/bodypart.mdl -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/models/ESFSpecials/dragonhead.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/models/ESFSpecials/dragonhead.mdl -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/models/ESFSpecials/selfdestruct.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/models/ESFSpecials/selfdestruct.mdl -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/models/ESFSpecials/ultimatesacrifice.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/models/ESFSpecials/ultimatesacrifice.mdl -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/models/ESFSpecials/white_sphere.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/models/ESFSpecials/white_sphere.mdl -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/angryblast.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/angryblast.wav -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/bodypart.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/bodypart.wav -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/excuseme.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/excuseme.wav -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/kaioswoop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/kaioswoop.wav -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/regenerate.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/regenerate.wav -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/ryuken.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/ryuken.wav -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/selfdestruction.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/selfdestruction.wav -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/superkaioken.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/superkaioken.wav -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/ultimatesacrifice.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sound/ESFSpecials/ultimatesacrifice.wav -------------------------------------------------------------------------------- /ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sprites/ESFSpecials/kaiokentrail.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Special Attacks [Works only with AMXX 1.8+ without ECX or Evolution X]/sprites/ESFSpecials/kaiokentrail.spr -------------------------------------------------------------------------------- /ESF Swoop Trail/ESF.SwoopTrail.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Swoop Trail/ESF.SwoopTrail.sma -------------------------------------------------------------------------------- /ESF Taunts/ESFTaunts.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/ESFTaunts.sma -------------------------------------------------------------------------------- /ESF Taunts/includes/esf_util.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/includes/esf_util.inc -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/buu/btaunt1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/buu/btaunt1.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/buu/btaunt2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/buu/btaunt2.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/buu/btaunt3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/buu/btaunt3.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/buu/btaunt4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/buu/btaunt4.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/cell/ctaunt1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/cell/ctaunt1.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/cell/ctaunt2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/cell/ctaunt2.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/cell/ctaunt3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/cell/ctaunt3.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/cell/ctaunt4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/cell/ctaunt4.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/frieza/ftaunt1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/frieza/ftaunt1.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/frieza/ftaunt2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/frieza/ftaunt2.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/frieza/ftaunt3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/frieza/ftaunt3.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/frieza/ftaunt4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/frieza/ftaunt4.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/gohan/gotaunt1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/gohan/gotaunt1.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/gohan/gotaunt2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/gohan/gotaunt2.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/gohan/gotaunt3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/gohan/gotaunt3.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/gohan/gotaunt4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/gohan/gotaunt4.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/goku/gtaunt1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/goku/gtaunt1.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/goku/gtaunt2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/goku/gtaunt2.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/goku/gtaunt3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/goku/gtaunt3.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/goku/gtaunt4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/goku/gtaunt4.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/krillin/ktaunt1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/krillin/ktaunt1.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/krillin/ktaunt2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/krillin/ktaunt2.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/krillin/ktaunt3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/krillin/ktaunt3.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/krillin/ktaunt4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/krillin/ktaunt4.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/piccolo/ptaunt1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/piccolo/ptaunt1.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/piccolo/ptaunt2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/piccolo/ptaunt2.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/piccolo/ptaunt3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/piccolo/ptaunt3.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/piccolo/ptaunt4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/piccolo/ptaunt4.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/trunks/trtaunt1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/trunks/trtaunt1.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/trunks/trtaunt2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/trunks/trtaunt2.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/trunks/trtaunt3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/trunks/trtaunt3.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/trunks/trtaunt4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/trunks/trtaunt4.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/vegeta/vtaunt1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/vegeta/vtaunt1.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/vegeta/vtaunt2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/vegeta/vtaunt2.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/vegeta/vtaunt3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/vegeta/vtaunt3.wav -------------------------------------------------------------------------------- /ESF Taunts/sound/t_taunt/vegeta/vtaunt4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF Taunts/sound/t_taunt/vegeta/vtaunt4.wav -------------------------------------------------------------------------------- /ESF debug plugins/BlockClassMenu.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF debug plugins/BlockClassMenu.sma -------------------------------------------------------------------------------- /ESF debug plugins/DEBUGTest.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ESF debug plugins/DEBUGTest.sma -------------------------------------------------------------------------------- /Exterminate by tuty/ExterminateByTuty.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Exterminate by tuty/ExterminateByTuty.sma -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/FantasyCTF.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/FantasyCTF.sma -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/models/fantasyctf/back_blueflag.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/models/fantasyctf/back_blueflag.mdl -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/models/fantasyctf/back_redflag.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/models/fantasyctf/back_redflag.mdl -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/models/fantasyctf/blue_flag.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/models/fantasyctf/blue_flag.mdl -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/models/fantasyctf/red_flag.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/models/fantasyctf/red_flag.mdl -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/plugin addons/adrenaline.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/plugin addons/adrenaline.sma -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/plugin addons/heal.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/plugin addons/heal.sma -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/plugin addons/motionsensor.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/plugin addons/motionsensor.sma -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/plugin addons/wallclimb.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/plugin addons/wallclimb.sma -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/blue_flag_dropped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/blue_flag_dropped.mp3 -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/blue_flag_taken.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/blue_flag_taken.mp3 -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/blue_team_scores.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/blue_team_scores.mp3 -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/red_flag_dropped.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/red_flag_dropped.mp3 -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/red_flag_taken.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/red_flag_taken.mp3 -------------------------------------------------------------------------------- /Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/red_team_scores.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Fantasy Capture The Flag [IN PROGRESS]/sound/fantasyctf/red_team_scores.mp3 -------------------------------------------------------------------------------- /Free Defuser Kit/FreeDefuserkit.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Free Defuser Kit/FreeDefuserkit.sma -------------------------------------------------------------------------------- /Funny HL Sounds/FHS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Funny HL Sounds/FHS.ini -------------------------------------------------------------------------------- /Funny HL Sounds/FHS.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Funny HL Sounds/FHS.sma -------------------------------------------------------------------------------- /Funny HL Sounds/FHS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Funny HL Sounds/FHS.txt -------------------------------------------------------------------------------- /HL Weapons Floating/HL_WeaponFloating.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/HL Weapons Floating/HL_WeaponFloating.sma -------------------------------------------------------------------------------- /Half-Life Give Items And Weapons/HL_GiveWeapons.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-Life Give Items And Weapons/HL_GiveWeapons.sma -------------------------------------------------------------------------------- /Half-Life Give Items And Weapons/HL_GiveWeapons_byConnorMcLeod.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-Life Give Items And Weapons/HL_GiveWeapons_byConnorMcLeod.sma -------------------------------------------------------------------------------- /Half-life Stats T/HLStatsT.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-life Stats T/HLStatsT.sma -------------------------------------------------------------------------------- /Half-life Stats T/hlstatst/hlstatst_godlike.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-life Stats T/hlstatst/hlstatst_godlike.wav -------------------------------------------------------------------------------- /Half-life Stats T/hlstatst/hlstatst_holyshit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-life Stats T/hlstatst/hlstatst_holyshit.wav -------------------------------------------------------------------------------- /Half-life Stats T/hlstatst/hlstatst_killingspree.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-life Stats T/hlstatst/hlstatst_killingspree.wav -------------------------------------------------------------------------------- /Half-life Stats T/hlstatst/hlstatst_ludicrouskill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-life Stats T/hlstatst/hlstatst_ludicrouskill.wav -------------------------------------------------------------------------------- /Half-life Stats T/hlstatst/hlstatst_megakill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-life Stats T/hlstatst/hlstatst_megakill.wav -------------------------------------------------------------------------------- /Half-life Stats T/hlstatst/hlstatst_monsterkill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-life Stats T/hlstatst/hlstatst_monsterkill.wav -------------------------------------------------------------------------------- /Half-life Stats T/hlstatst/hlstatst_multikill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-life Stats T/hlstatst/hlstatst_multikill.wav -------------------------------------------------------------------------------- /Half-life Stats T/hlstatst/hlstatst_rampage.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-life Stats T/hlstatst/hlstatst_rampage.wav -------------------------------------------------------------------------------- /Half-life Stats T/hlstatst/hlstatst_ultrakill.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Half-life Stats T/hlstatst/hlstatst_ultrakill.wav -------------------------------------------------------------------------------- /Healthkit on dead body/kit_on_body.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Healthkit on dead body/kit_on_body.sma -------------------------------------------------------------------------------- /Italy Chicken Killer/ItalyChickenKiller.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Italy Chicken Killer/ItalyChickenKiller.sma -------------------------------------------------------------------------------- /Knife Hit Decal/KnifeHitDecal.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Knife Hit Decal/KnifeHitDecal.sma -------------------------------------------------------------------------------- /LIVEChat/Web php/live/Scripts/expressInstall.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/Scripts/expressInstall.swf -------------------------------------------------------------------------------- /LIVEChat/Web php/live/Scripts/swfobject_modified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/Scripts/swfobject_modified.js -------------------------------------------------------------------------------- /LIVEChat/Web php/live/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/config.php -------------------------------------------------------------------------------- /LIVEChat/Web php/live/header_v8.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/header_v8.swf -------------------------------------------------------------------------------- /LIVEChat/Web php/live/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/images/banner.png -------------------------------------------------------------------------------- /LIVEChat/Web php/live/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/images/menu.png -------------------------------------------------------------------------------- /LIVEChat/Web php/live/images/partners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/images/partners.png -------------------------------------------------------------------------------- /LIVEChat/Web php/live/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/images/top.png -------------------------------------------------------------------------------- /LIVEChat/Web php/live/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/index.php -------------------------------------------------------------------------------- /LIVEChat/Web php/live/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/loading.gif -------------------------------------------------------------------------------- /LIVEChat/Web php/live/response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/response.php -------------------------------------------------------------------------------- /LIVEChat/Web php/live/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/Web php/live/style.css -------------------------------------------------------------------------------- /LIVEChat/configs/LIVEChat.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/configs/LIVEChat.cfg -------------------------------------------------------------------------------- /LIVEChat/scripting/LIVE_Chat.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/LIVEChat/scripting/LIVE_Chat.sma -------------------------------------------------------------------------------- /Light SmokeGrenade/LightSmokeGrenade.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Light SmokeGrenade/LightSmokeGrenade.sma -------------------------------------------------------------------------------- /Loading Menu/GameMenu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Loading Menu/GameMenu.ini -------------------------------------------------------------------------------- /Loading Menu/LoadingMenu.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Loading Menu/LoadingMenu.sma -------------------------------------------------------------------------------- /Loading Menu/exemplu.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Loading Menu/exemplu.PNG -------------------------------------------------------------------------------- /Mario Coins/MarioCoins.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Mario Coins/MarioCoins.sma -------------------------------------------------------------------------------- /Mario Coins/models/MarioCoins/mario_coin.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Mario Coins/models/MarioCoins/mario_coin.mdl -------------------------------------------------------------------------------- /Mario Coins/sound/MarioCoins/coingained.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Mario Coins/sound/MarioCoins/coingained.wav -------------------------------------------------------------------------------- /Mario Coins/sound/MarioCoins/lifegained.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Mario Coins/sound/MarioCoins/lifegained.wav -------------------------------------------------------------------------------- /Mario Coins/sound/MarioCoins/respawned.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Mario Coins/sound/MarioCoins/respawned.wav -------------------------------------------------------------------------------- /No DROWN in Water/no_drown.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/No DROWN in Water/no_drown.sma -------------------------------------------------------------------------------- /Novuslink Radio/Radio.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Novuslink Radio/Radio.sma -------------------------------------------------------------------------------- /Novuslink Redirect Stats/NovusLinkRedirectSTATS.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Novuslink Redirect Stats/NovusLinkRedirectSTATS.sma -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/BHZDKit.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/BHZDKit.sma -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/bio_headcrab.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/bio_headcrab.sma -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/bio_zombiescanner.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/bio_zombiescanner.sma -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/bio_zombietaunts.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/bio_zombietaunts.sma -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/biohazard/braaains.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/biohazard/braaains.wav -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/biohazard/brains.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/biohazard/brains.wav -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/biohazard/brains2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/biohazard/brains2.wav -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/biohazard/feeed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/biohazard/feeed.wav -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/biohazard/join2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/biohazard/join2.wav -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/biohazard/joinusss.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/biohazard/joinusss.wav -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/biohazard/mustfeed.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/biohazard/mustfeed.wav -------------------------------------------------------------------------------- /Plugins for Biohazard by Cheap_suit/sprites/healKIT.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Plugins for Biohazard by Cheap_suit/sprites/healKIT.spr -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/frostnova.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/frostnova.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/liukangfb.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/liukangfb.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/roots2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/roots2.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_fireman.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_fireman.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_flash.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_flash.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_hulk.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_hulk.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_liukang.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_liukang.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_medic.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_medic.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_mutant2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_mutant2.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_night.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_night.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_ninja2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_ninja2.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_predator.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_predator.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_reptile.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_reptile.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_scientist2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_scientist2.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_scorpion.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_scorpion.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_spectru.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_spectru.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_storm.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_storm.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_subzero.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_subzero.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_weed.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_weed.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_wolf.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/models/royal/v_wolf.mdl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod.sma -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/Commands.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/Commands.inl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/Constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/Constants.inl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/Cvars.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/Cvars.inl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/EffectStocks.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/EffectStocks.inl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/Events.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/Events.inl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/HalfLifePrecache.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/HalfLifePrecache.inl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/KnifePrecache.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/KnifePrecache.inl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/Menus.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/scripting/QuestMod/Menus.inl -------------------------------------------------------------------------------- /Quest Mod v9.9.9 for MAPPING.RO/sprites/heal.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Quest Mod v9.9.9 for MAPPING.RO/sprites/heal.spr -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/README.md -------------------------------------------------------------------------------- /Random Nades/RandomNades.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Random Nades/RandomNades.sma -------------------------------------------------------------------------------- /Random Players Glow/RandomPlayers_Glow.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Random Players Glow/RandomPlayers_Glow.sma -------------------------------------------------------------------------------- /Random Skies/randomskies.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Random Skies/randomskies.sma -------------------------------------------------------------------------------- /Shockwave Flashbang/ShockWaveFB.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Shockwave Flashbang/ShockWaveFB.sma -------------------------------------------------------------------------------- /Simple Gore by tuty/GoreTuty.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Simple Gore by tuty/GoreTuty.sma -------------------------------------------------------------------------------- /Simple Respawn/SimpleRespawn.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Simple Respawn/SimpleRespawn.sma -------------------------------------------------------------------------------- /Skeletons/skeletons.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Skeletons/skeletons.sma -------------------------------------------------------------------------------- /Solar Flash/solar_flash.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Solar Flash/solar_flash.sma -------------------------------------------------------------------------------- /Spider Man/SpiderMan.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Spider Man/SpiderMan.sma -------------------------------------------------------------------------------- /Spider_man/SpiderMan.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Spider_man/SpiderMan.sma -------------------------------------------------------------------------------- /Star Wars by tuty/StarWars.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Star Wars by tuty/StarWars.sma -------------------------------------------------------------------------------- /Super Predator by tuty/Descriere.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/Descriere.txt -------------------------------------------------------------------------------- /Super Predator by tuty/PredatorTuty.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/PredatorTuty.sma -------------------------------------------------------------------------------- /Super Predator by tuty/colorchat.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/colorchat.inc -------------------------------------------------------------------------------- /Super Predator by tuty/models/player/predator/predator.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/models/player/predator/predator.mdl -------------------------------------------------------------------------------- /Super Predator by tuty/models/predator_disk.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/models/predator_disk.mdl -------------------------------------------------------------------------------- /Super Predator by tuty/models/v_predator_hands.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/models/v_predator_hands.mdl -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/plasma_explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/plasma_explosion.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_damage1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_damage1.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_damage2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_damage2.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_damage3.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_damage3.WAV -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_die.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_die2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_die2.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_die3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_die3.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_die4.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_die4.WAV -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_dirtpound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_dirtpound.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_growl.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_growl.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_idle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_idle.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_idle2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_idle2.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_idle3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_idle3.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_plasmafire.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_plasmafire.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_scream.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_scream.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sound/predator/predator_visionchange.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sound/predator/predator_visionchange.wav -------------------------------------------------------------------------------- /Super Predator by tuty/sprites/plasma.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Super Predator by tuty/sprites/plasma.spr -------------------------------------------------------------------------------- /Surf Ski 2 Admin Menu/SurfSki2_AdminMenu.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Surf Ski 2 Admin Menu/SurfSki2_AdminMenu.sma -------------------------------------------------------------------------------- /Surf Ski 2 Admin Menu/surfski2_adminmenu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Surf Ski 2 Admin Menu/surfski2_adminmenu.txt -------------------------------------------------------------------------------- /Tag Name/TagName.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Tag Name/TagName.sma -------------------------------------------------------------------------------- /Team Icon Spr/Team_Spr.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Team Icon Spr/Team_Spr.sma -------------------------------------------------------------------------------- /Team Icon Spr/Team_Spr_v105.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Team Icon Spr/Team_Spr_v105.sma -------------------------------------------------------------------------------- /Team Icon Spr/sprites/teamspr/ct_blue.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Team Icon Spr/sprites/teamspr/ct_blue.spr -------------------------------------------------------------------------------- /Team Icon Spr/sprites/teamspr/t_red.spr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Team Icon Spr/sprites/teamspr/t_red.spr -------------------------------------------------------------------------------- /Team Icon Spr/teamspr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Team Icon Spr/teamspr.txt -------------------------------------------------------------------------------- /Thunder Kill/ThunderKill.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Thunder Kill/ThunderKill.sma -------------------------------------------------------------------------------- /Trails/Trails.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Trails/Trails.sma -------------------------------------------------------------------------------- /Tutys Jetpack/TutyJetpack.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Tutys Jetpack/TutyJetpack.sma -------------------------------------------------------------------------------- /Tutys Jetpack/TutyJetpack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Tutys Jetpack/TutyJetpack.txt -------------------------------------------------------------------------------- /Tutys Jetpack/models/p_longjump.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Tutys Jetpack/models/p_longjump.mdl -------------------------------------------------------------------------------- /Vampire/vampire.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Vampire/vampire.sma -------------------------------------------------------------------------------- /Volley Ball Mod/VolleyBallMod.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/VolleyBallMod.sma -------------------------------------------------------------------------------- /Volley Ball Mod/configs/VolleyBall.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/configs/VolleyBall.cfg -------------------------------------------------------------------------------- /Volley Ball Mod/lang/VolleyBall.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/lang/VolleyBall.txt -------------------------------------------------------------------------------- /Volley Ball Mod/models/VolleyBallMod/volleyball1.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/models/VolleyBallMod/volleyball1.mdl -------------------------------------------------------------------------------- /Volley Ball Mod/models/asteroid2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/models/asteroid2.mdl -------------------------------------------------------------------------------- /Volley Ball Mod/models/camera.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/models/camera.mdl -------------------------------------------------------------------------------- /Volley Ball Mod/models/p_volleyhands.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/models/p_volleyhands.mdl -------------------------------------------------------------------------------- /Volley Ball Mod/models/player/volleyct/volleyct.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/models/player/volleyct/volleyct.mdl -------------------------------------------------------------------------------- /Volley Ball Mod/models/player/volleyte/volleyte.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/models/player/volleyte/volleyte.mdl -------------------------------------------------------------------------------- /Volley Ball Mod/models/v_volleybhands.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/models/v_volleybhands.mdl -------------------------------------------------------------------------------- /Volley Ball Mod/sound/VolleyBallMod/bart.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/sound/VolleyBallMod/bart.wav -------------------------------------------------------------------------------- /Volley Ball Mod/sound/VolleyBallMod/boing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/sound/VolleyBallMod/boing.wav -------------------------------------------------------------------------------- /Volley Ball Mod/sound/VolleyBallMod/boomchakalaka.WAV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/sound/VolleyBallMod/boomchakalaka.WAV -------------------------------------------------------------------------------- /Volley Ball Mod/sound/VolleyBallMod/hoho.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/sound/VolleyBallMod/hoho.wav -------------------------------------------------------------------------------- /Volley Ball Mod/sound/VolleyBallMod/mhaha.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/sound/VolleyBallMod/mhaha.wav -------------------------------------------------------------------------------- /Volley Ball Mod/sound/VolleyBallMod/tazrazz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/sound/VolleyBallMod/tazrazz.wav -------------------------------------------------------------------------------- /Volley Ball Mod/sound/VolleyBallMod/whoa.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/sound/VolleyBallMod/whoa.wav -------------------------------------------------------------------------------- /Volley Ball Mod/sound/VolleyBallMod/yeahbaby.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Volley Ball Mod/sound/VolleyBallMod/yeahbaby.wav -------------------------------------------------------------------------------- /Vomit/Vomit.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Vomit/Vomit.sma -------------------------------------------------------------------------------- /Vomit/sounds/misc/vomit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Vomit/sounds/misc/vomit.wav -------------------------------------------------------------------------------- /Vote Restart/Vote_Restart.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Vote Restart/Vote_Restart.sma -------------------------------------------------------------------------------- /WAR Pause Game/Instructiuni.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/WAR Pause Game/Instructiuni.txt -------------------------------------------------------------------------------- /WAR Pause Game/Plugin_Pause.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/WAR Pause Game/Plugin_Pause.sma -------------------------------------------------------------------------------- /WAR Pause Game/lang/time_length.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/WAR Pause Game/lang/time_length.txt -------------------------------------------------------------------------------- /WAR Pause Game/poze/oprit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/WAR Pause Game/poze/oprit.PNG -------------------------------------------------------------------------------- /WAR Pause Game/poze/pornit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/WAR Pause Game/poze/pornit.PNG -------------------------------------------------------------------------------- /Weapon Name Replacer/wnr.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Weapon Name Replacer/wnr.ini -------------------------------------------------------------------------------- /Weapon Name Replacer/wnr.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Weapon Name Replacer/wnr.sma -------------------------------------------------------------------------------- /Who Is Driving/who_is_driving.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Who Is Driving/who_is_driving.sma -------------------------------------------------------------------------------- /Winner of The Game/WinnerOfTheGame.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Winner of The Game/WinnerOfTheGame.sma -------------------------------------------------------------------------------- /Winner of The Game/misc/1frag.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Winner of The Game/misc/1frag.wav -------------------------------------------------------------------------------- /Winner of The Game/misc/2frags.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Winner of The Game/misc/2frags.wav -------------------------------------------------------------------------------- /Winner of The Game/misc/3frags.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/Winner of The Game/misc/3frags.wav -------------------------------------------------------------------------------- /[HL] Give Items and Weapons/HL_GiveWeapons.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/[HL] Give Items and Weapons/HL_GiveWeapons.sma -------------------------------------------------------------------------------- /[HL] Give Items and Weapons/HL_GiveWeapons_byConnorMcLeod.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/[HL] Give Items and Weapons/HL_GiveWeapons_byConnorMcLeod.sma -------------------------------------------------------------------------------- /[post] Message Type/PostMessage.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/[post] Message Type/PostMessage.sma -------------------------------------------------------------------------------- /[post] Message Type/postmessage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/[post] Message Type/postmessage.txt -------------------------------------------------------------------------------- /ka_roadwars BuyTeleport/ka_roadwars_buyteleport.sma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tutyamxx/AMXX_Codes/HEAD/ka_roadwars BuyTeleport/ka_roadwars_buyteleport.sma --------------------------------------------------------------------------------