<?xml version="1.0"?>
<rss version="2.0"><channel><title>League of Legends Community Scripts Latest Topics</title><link>https://gamingonsteroids.com/forum/9-league-of-legends-community-scripts/</link><description>League of Legends Community Scripts Latest Topics</description><language>en</language><item><title>GOS EXTP for League of Legends - Full feature explanation</title><link>https://gamingonsteroids.com/topic/1042-gos-extp-for-league-of-legends-full-feature-explanation/</link><description><![CDATA[<p>
	GoS EXTP is the GamingOnSteroids League of Legends scripting platform built around a configurable orbwalker, Lua scripting, in-game menu controls, drawing tools, target selection and performance settings. This topic explains what the project does from a user point of view, based on the current GoS EXTP source structure and inbuilt scripts.
</p>

<p>
	The goal of GoS EXTP is to give League of Legends players a flexible scripts where combat, farming, visual information and champion logic can be controlled through Lua scripts and an in-game configuration menu. Instead of being a single fixed script, GoS EXTP works as a scripting software: it loads scripts, lets scripts reads to game events, and provides a ready-made orbwalker function for common gameplay actions.
</p>

<h2>
	Main GoS EXTP Features
</h2>

<p>
	GoS EXTP includes several core systems that work together:
</p>

<ul>
	<li>
		League of Legends orbwalker for attacks, movement and farming logic
	</li>
	<li>
		Lua scripting engine for champion scripts and custom scripts
	</li>
	<li>
		In-game menu system with checkboxes, sliders, keybinds, dropdowns and color options
	</li>
	<li>
		Target selector with per-enemy priority settings
	</li>
	<li>
		Drawing overlay for attack range, enemy range, last-hit indicators and custom script visuals
	</li>
	<li>
		Callback system for Tick, Draw, WndMsg, Load and UnLoad events
	</li>
	<li>
		Game object API for heroes, minions, turrets, jungle camps, missiles and other in-game objects
	</li>
	<li>
		Vector and prediction helpers for position, distance and movement calculations
	</li>
	<li>
		Local script database for enabling and loading installed Lua scripts
	</li>
	<li>
		Performance options for lower-end systems
	</li>
</ul>

<h2>
	Orbwalker
</h2>

<p>
	The GoS EXTP orbwalker is one of the most important parts of the project. It controls basic attack timing, movement windows and target selection so scripts can focus on champion logic instead of rebuilding attack movement from zero.
</p>

<p>
	The included orbwalker supports the common League of Legends scripting modes players expect:
</p>

<ul>
	<li>
		Combo: focuses enemy champions while allowing movement between attacks.
	</li>
	<li>
		Harass / Mixed: trades against enemy champions while still allowing lane interaction.
	</li>
	<li>
		Last Hit: helps secure minions when they are low enough to be killed.
	</li>
	<li>
		Waveclear: attacks lane minions and structures when clearing.
	</li>
	<li>
		Freeze: uses controlled last-hitting logic to avoid pushing the wave too quickly.
	</li>
	<li>
		Flee: prioritizes movement away from danger while respecting movement timing.
	</li>
</ul>

<p>
	Default hotkeys are already defined in the source:
</p>

<ul>
	<li>
		Space for Combo
	</li>
	<li>
		C for Harass / Mixed
	</li>
	<li>
		X for Last Hit
	</li>
	<li>
		V for Waveclear
	</li>
	<li>
		Y for Freeze
	</li>
	<li>
		A for Flee
	</li>
</ul>

<p>
	These modes make the platform useful for different situations: fighting, trading, farming under pressure, freezing the wave, clearing quickly, or moving away from a dangerous position.
</p>

<h2>
	Target Selector
</h2>

<p>
	GoS EXTP includes a target selector that ranks enemies based on damage value, health and custom priority. Each enemy champion can be assigned a priority value, which lets users decide which targets should matter most in fights.
</p>

<p>
	This is useful for champion scripts because target choice matters as much as spell logic. A burst champion may want to focus a low-health carry, while another setup may prefer the closest valid target. The target selector gives the orbwalker and scripts a consistent way to choose targets instead of making every script solve the same problem separately.
</p>

<p>
	The source also exposes functions that allow scripts to force a target, force movement, block attacks or block movement when a champion script needs more control during a specific combo, cast or animation window.
</p>

<h2>
	Farming and Lane Control
</h2>

<p>
	GoS EXTP includes lane tools for last hitting, waveclear and freezing. The orbwalker checks minion health, attack damage and timing so it can identify when a minion is ready to be killed.
</p>

<p>
	The last-hit marker drawing is especially useful because it shows which minions are close to being killable. This gives players better visual awareness during lane phase and helps separate farming logic from full combat logic.
</p>

<p>
	The freeze mode is designed for players who want more controlled lane behavior. Instead of blindly pushing every wave, it helps preserve a slower lane state by focusing only the minions that should be taken.
</p>

<h2>
	Drawing Overlay
</h2>

<p>
	The drawing system is another major part of GoS EXTP. The source uses drawing tools for circles, minimap circles, rectangles, lines, text, sprites, colors and fonts. This allows the platform and individual scripts to display useful information directly on the screen.
</p>

<p>
	The built-in orbwalker drawings include:
</p>

<ul>
	<li>
		Player attack range
	</li>
	<li>
		Enemy attack range
	</li>
	<li>
		Current selected or clicked target
	</li>
	<li>
		Last-hit indicators for lane minions
	</li>
</ul>

<p>
	Scripts can also use the drawing API for champion ranges, spell indicators, damage previews, custom text, minimap information and other visual aids. This makes GoS EXTP more than an automation platform; it also acts as an awareness overlay for players who want clearer information during fast fights.
</p>

<h2>
	Lua Scripting Platform
</h2>

<p>
	GoS EXTP is built around Lua scripting. Lua scripts can be loaded locally, enabled through the script database and connected to the platform through callbacks and exposed game objects.
</p>

<p>
	The API gives scripts access to many important object properties, including:
</p>

<ul>
	<li>
		Position and screen position
	</li>
	<li>
		Health, mana, shields and regeneration
	</li>
	<li>
		Attack damage, ability power, attack speed and critical chance
	</li>
	<li>
		Armor, magic resist and penetration values
	</li>
	<li>
		Movement speed, attack range and bounding radius
	</li>
	<li>
		Visibility, death state and targetability
	</li>
	<li>
		Spell data, active spells and attack data
	</li>
	<li>
		Minion, hero, turret, jungle and missile information
	</li>
</ul>

<p>
	This allows champion scripts to make decisions based on real in-game state: whether a target is visible, whether it is in range, whether a spell is ready, whether a minion can be last-hit, or whether a target position can be predicted.
</p>

<h2>
	Callback System
</h2>

<p>
	The project exposes a callback system for common events. Scripts can register logic on Tick, Draw, WndMsg and other events.
</p>

<p>
	This is important because every script needs a clean way to run logic at the correct time:
</p>

<ul>
	<li>
		Tick callbacks handle repeated game logic.
	</li>
	<li>
		Draw callbacks handle visuals.
	</li>
	<li>
		WndMsg callbacks handle keyboard and mouse input.
	</li>
	<li>
		Load callbacks initialize scripts.
	</li>
	<li>
		UnLoad callbacks save or clean up script state.
	</li>
</ul>

<p>
	This event-based approach keeps champion scripts cleaner and makes it easier to build reusable League of Legends scripts on top of GoS EXTP.
</p>

<h2>
	Menu and Configuration System
</h2>

<p>
	The embedded menu system is one of the strongest quality-of-life features in GoS EXTP. It supports common configuration controls such as:
</p>

<ul>
	<li>
		Toggles
	</li>
	<li>
		Sliders
	</li>
	<li>
		Min/max sliders
	</li>
	<li>
		Dropdown menus
	</li>
	<li>
		Keybinds
	</li>
	<li>
		Color pickers
	</li>
	<li>
		Submenus
	</li>
	<li>
		Tooltips
	</li>
	<li>
		Hidden or removable menu items
	</li>
	<li>
		Saved values
	</li>
</ul>

<p>
	The main GoS EXTP menu includes settings for spell hotkeys, summoner spell hotkeys, item hotkeys, target champions only, menu hotkey, draw quality, renderer sleep delay and clicker sleep delay.
</p>

<p>
	The menu can be opened with the configured menu key, and user settings can be saved so players do not need to rebuild their setup every session.
</p>

<h2>
	Prediction and Vectors
</h2>

<p>
	GoS EXTP includes vectors and prediction support for script development. The API provides tools for distance checks, screen conversion, minimap conversion, normalization, angle calculations, projection, extension, rotation, interpolation and more.
</p>

<p>
	For champion scripting, these matter because League of Legends is a movement-heavy game. A script often needs to know where a target is now, where it may be after a delay, whether it is inside range, and how positions relate to each other.
</p>

<p>
	The prediction gives scripts a cleaner way to estimate future target positions based on speed and delay. This can be used for skillshot logic, range checks and visual indicators.
</p>

<h2>
	Champion Scripts
</h2>

<p>
	GoS EXTP is designed as a base for champion scripts. The orbwalker provides movement and attack behavior, while the Lua API gives scripts access to objects, spells, prediction, drawings and input.
</p>

<p>
	This means champion scripts can focus on champion-specific decisions:
</p>

<ul>
	<li>
		When to use Q, W, E or R
	</li>
	<li>
		Which target should be selected
	</li>
	<li>
		When to trade or hold abilities
	</li>
	<li>
		How to draw spell ranges
	</li>
	<li>
		How to react to enemy position or health
	</li>
	<li>
		Which combo, harass or clear rules should be used
	</li>
</ul>

<p>
	The source also contains support for champion-specific attack behavior in the orbwalker, such as special handling for champions with unique auto-attack mechanics or bonus damage logic.
</p>

<h2>
	Performance Options
</h2>

<p>
	GoS EXTP includes performance controls for users who want smoother behavior on weaker PCs. The menu exposes draw quality, renderer sleep delay, clicker sleep delay and a low-spec performance option.
</p>

<p>
	These settings are useful because scripting platforms can become heavy when too many drawings, scans or calculations run every frame. Having built-in performance controls lets users tune the experience for their system instead of being locked into one setup.
</p>

<h2>
	Why This Matters
</h2>

<p>
	GoS EXTP is not only a League of Legends orbwalker. It is a full scripting base with Lua support, configurable menus, drawing tools, target selection, prediction helpers, object access and script loading. The orbwalker handles the common combat and farming functions, while Lua scripts can build champion-specific behavior on top of it.
</p>

<p>
	For users, that means GoS EXTP can be used for clearer in-game information, better script customization, configurable hotkeys, lane tools and champion script support. For script developers, it provides the core building blocks needed to create and maintain League of Legends Lua scripts without rebuilding the same menu, drawing, callback and orbwalker systems every time.
</p>

<p>
	In short, GoS EXTP is the League of Legends scripting software behind GamingOnSteroids: an orbwalker, script loader, visual overlay and Lua API combined into one configurable platform.
</p>
]]></description><guid isPermaLink="false">1042</guid><pubDate>Wed, 08 Jul 2026 13:59:43 +0000</pubDate></item><item><title>Fixing Old AIO + New Pred</title><link>https://gamingonsteroids.com/topic/1038-fixing-old-aio-new-pred/</link><description><![CDATA[<ul style="background-color:#161616;border:0px solid;color:#fafafa;font-size:14px;padding:0px 0px 0px 32px;">
	<li style="border:0px solid;padding:0px;">
		Changed<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">"Premium Prediction"</code><span> </span>→<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">"GoSPPrediction"</code><span> </span>menu label in<span> </span><strong style="border:0px solid;color:#fafafa;padding:0px;">all 64 champion files</strong><span> </span>(<code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">Champions/*.lua</code>),<span> </span><code style="border:0px solid;color:#a2bcff;font-size:1em;padding:2px 4px;">dynamicScript.lua</code>,<span> </span><code style="border:0px solid;color:#a2bcff;font-size:1em;padding:2px 4px;">Core.lua</code>, and<span> </span><code style="border:0px solid;color:#a2bcff;font-size:1em;padding:2px 4px;">Riven.lua</code>.
	</li>
	<li style="border:0px solid;padding:0px;">
		Changed<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">_G.PremiumPrediction:</code><span> </span>→<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">_G.GoSPPrediction:</code><span> </span>API calls in all champion files.
	</li>
	<li style="border:0px solid;padding:0px;">
		Fixed<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">CastEmote({[1]=4,[2]=3,[3]=5,[4]=2}[emoteIdx])</code><span> </span>→<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">CastEmote(emoteIdx + 1)</code><span> </span>in both<span> </span><code style="border:0px solid;color:#a2bcff;font-size:1em;padding:2px 4px;">Riven.lua</code><span> </span>and<span> </span><code style="border:0px solid;color:#a2bcff;font-size:1em;padding:2px 4px;">dynamicScript.lua</code><span> </span>(inline table syntax unsupported by GoS Lua; wrong DIK mapping; correct map is menu{1,2,3,4}=DIK{2,3,4,5}=emoteIdx+1).
	</li>
	<li style="border:0px solid;padding:0px;">
		Dialed down Riven fast-Q delay default:<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">0.09</code><span> </span>→<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">0.04</code>.
	</li>
	<li style="border:0px solid;padding:0px;">
		Fixed<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">PressKey(HK_S)</code><span> </span>→<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">PressKey(31)</code><span> </span>in<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">ResetQ</code><span> </span>in both files.
	</li>
	<li style="border:0px solid;padding:0px;">
		Added<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">pcall</code><span> </span>wrapper around<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">_G.GoSPPrediction:GetPrediction</code><span> </span>in<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">CastR2</code><span> </span>in both<span> </span><code style="border:0px solid;color:#a2bcff;font-size:1em;padding:2px 4px;">Riven.lua</code><span> </span>and<span> </span><code style="border:0px solid;color:#a2bcff;font-size:1em;padding:2px 4px;">dynamicScript.lua</code>.
	</li>
	<li style="border:0px solid;padding:0px;">
		Fixed<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">VectorMovementCollision</code><span> </span>in<span> </span><code style="border:0px solid;color:#a2bcff;font-size:1em;padding:2px 4px;">GoSPPrediction.lua</code>:
		<ul style="border:0px solid;padding:0px 0px 0px 1rem;">
			<li style="border:0px solid;padding:0px;">
				Changed callers from<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">y=A.z</code><span> </span>to<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">z=A.z</code><span> </span>(both dash and waypoint code paths).
			</li>
			<li style="border:0px solid;padding:0px;">
				Changed<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">{x=from.x, y=from.z}</code><span> </span>→ bare<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">from</code><span> </span>at line 636.
			</li>
			<li style="border:0px solid;padding:0px;">
				Added nil-guard return at top if<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">startPoint1</code><span> </span>or<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">startPoint2</code><span> </span>is nil.
			</li>
			<li style="border:0px solid;padding:0px;">
				Added<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">_z(p)</code><span> </span>helper:<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">p.z or p.y or 0</code><span> </span>with<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">or 0</code><span> </span>fallback on all fields.
			</li>
		</ul>
	</li>
	<li style="border:0px solid;padding:0px;">
		Bumped<span> </span><code style="border:0px solid;color:#a2bcff;font-size:1em;padding:2px 4px;">currentVersion.lua</code><span> </span>Riven version<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">0.05</code><span> </span>→<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">0.06</code><span> </span>to prevent auto-updater from overwriting local fixes.
	</li>
	<li style="border:0px solid;padding:0px;">
		Kha'Zix double jump: state tracking, menu toggles, detection, auto-cast.
	</li>
	<li style="border:0px solid;padding:0px;">
		Riven<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">CastW</code>: removed<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">IsFacing</code><span> </span>check (W is AoE).
	</li>
	<li style="border:0px solid;padding:0px;">
		Riven<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">Combo()</code>: added<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">CheckCastR2</code><span> </span>call.
	</li>
	<li style="border:0px solid;padding:0px;">
		Riven<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">ShyCombo</code>/<code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">WerCombo</code>: fixed<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">Orbwalker</code><span> </span>→<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">_G.SDK.Orbwalker</code><span> </span>nil crash.
	</li>
	<li style="border:0px solid;padding:0px;">
		Riven<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">AfterAttackCombo</code>: R2 no longer gated on<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">Ready(_Q)</code>; E broadened.
	</li>
	<li style="border:0px solid;padding:0px;">
		Riven<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">OnProcessSpellCombo</code>: added Q3→R2 doublecast.
	</li>
	<li style="border:0px solid;padding:0px;">
		Riven hydra detection: expanded to<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">find("Hydra")</code><span> </span>in all three spell-queue handlers.
	</li>
	<li style="border:0px solid;padding:0px;">
		Riven W+Q doublecast: added<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">CastQ(target)</code><span> </span>after<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">HK_W</code><span> </span>in all spell-queue handlers.
	</li>
	<li style="border:0px solid;padding:0px;">
		Riven S cancel:<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">CancelMode</code><span> </span>dropdown (Move / Stop S);<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">ResetQ</code><span> </span>uses<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">PressKey(31)</code>.
	</li>
	<li style="border:0px solid;padding:0px;">
		Riven Emote cancel:<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">EmoteCancel</code><span> </span>dropdown; fires on<span> </span><code style="border:0px solid;color:#fafafa;font-size:1em;padding:2px 4px;">RivenIzunaBlade</code><span> </span>detection.<br />
		Request Any AIO Gos/BoL
	</li>
</ul>

<p>
	Yasuo Lazy Xerath  and  orbwalker update and pred
</p>

<p>
	<a class="ipsAttachLink" data-fileext="zip" data-fileid="445" href="https://gamingonsteroids.com/applications/core/interface/file/attachment.php?id=445&amp;key=e2a9804d455d929a07cdd0be46baf56b" rel="">PussyAIO_backup.zip</a>
</p>

<p>
	 
</p>

<p>
	<a class="ipsAttachLink" data-fileext="zip" data-fileid="448" href="https://gamingonsteroids.com/applications/core/interface/file/attachment.php?id=448&amp;key=cf90672e407ec1d8b6788267eccdd83d" rel="">WRAIO_backup.zip</a>
</p>

<p>
	<a class="ipsAttachLink" data-fileext="lua" data-fileid="449" href="https://gamingonsteroids.com/applications/core/interface/file/attachment.php?id=449&amp;key=033d5f965a91eda224ba6ec6ba672308" rel="">SxcSAIO.lua</a>
</p>
<p>
<a class="ipsAttachLink" href="https://gamingonsteroids.com/applications/core/interface/file/attachment.php?id=450&amp;key=ce55e90dccd15df23fd986c80714319d" data-fileExt='lua' data-fileid='450' data-filekey='ce55e90dccd15df23fd986c80714319d'>YasuoThePackGod.lua</a> 
<a class="ipsAttachLink" href="https://gamingonsteroids.com/applications/core/interface/file/attachment.php?id=451&amp;key=c5ff37fe384af25a0ce684dfc810c9b3" data-fileExt='lua' data-fileid='451' data-filekey='c5ff37fe384af25a0ce684dfc810c9b3'>GGOrbwalker.lua</a> 
<a class="ipsAttachLink" href="https://gamingonsteroids.com/applications/core/interface/file/attachment.php?id=453&amp;key=4caaa27c65fa4668c312bf2180362fa7" data-fileExt='lua' data-fileid='453' data-filekey='4caaa27c65fa4668c312bf2180362fa7'>GoSPPrediction.lua</a> 
<a class="ipsAttachLink" href="https://gamingonsteroids.com/applications/core/interface/file/attachment.php?id=454&amp;key=33192eac41ce3af1235556ea1600e0f0" data-fileExt='lua' data-fileid='454' data-filekey='33192eac41ce3af1235556ea1600e0f0'>LazyXerath.lua</a></p>]]></description><guid isPermaLink="false">1038</guid><pubDate>Wed, 08 Jul 2026 11:05:16 +0000</pubDate></item><item><title>Lee-Sin Script 2026</title><link>https://gamingonsteroids.com/topic/995-lee-sin-script-2026/</link><description><![CDATA[<p>
	I'm new to this, but I'm interested in developing this community and wanted to somehow participate in its development and promotion. So, I decided to try making scripts. I'm currently working on a script for Lee Sin (I based it on the script made Depression). This is my first script, so I needed a template to get started (I've been working with this script for three days now).
</p>

<p>
	I'll say right away that it's not perfect, and I'm still working on it (I only have free time in the evenings, and I spend all that time testing, debugging, and working on the script).
</p>

<p>
	What the script contains:<br />
	1. Chinese Insec (a very complex mechanic for an external script, so it doesn't work as often or as well as I'd like, and I'll try to make it work a little later)<br />
	2. Combo (I'm currently working on it, trying to improve its usefulness and combat effectiveness)<br />
	3. Flee (it works well, there may be bugs when placing two wards, but it's not critical. If that happens, then... Write me, I'll fix it, but this wasn't in the latest version.<br />
	4. Wardjump (unlike Flee, it will place a new ward instead of jumping to the nearest target, but there's a catch: it may not work if you place a ward outside the W radius).<br />
	5. Jungle Clear: I haven't touched it yet because I've been trying to fine-tune the combo and insecure for the past three days.
</p>

<p>
	Please don't judge me too harshly, this is my first experience in this area and in this area of programming.
</p>

<p>
	To use the script, place it in the folder GamingOnSteroids\LOLEXT\Scripts\Common\DepressiveAIONext\Champions.<br />
	For it to work, open the menu by pressing F6 and select the two files Depressive.lua and DepressiveOrbwalker.lua , then press F6 to save everything.
</p>

<p>
	I hope you like this script that I decided to modify. Don't be too angry with me, as it's still in the development and testing phase.
</p>

<p>
	<a class="ipsAttachLink" data-fileext="lua" data-fileid="336" href="https://gamingonsteroids.com/applications/core/interface/file/attachment.php?id=336&amp;key=2679e80bd181f9f4a78d03fc39c3cfdf" rel="">LeeSin.lua</a>
</p>
]]></description><guid isPermaLink="false">995</guid><pubDate>Tue, 16 Jun 2026 18:06:01 +0000</pubDate></item><item><title>Port GoS to Mac please do it</title><link>https://gamingonsteroids.com/topic/1023-port-gos-to-mac-please-do-it/</link><description><![CDATA[<p>
	Port GoS to Mac please do it it would be so cool since I really want to use this product
</p>
]]></description><guid isPermaLink="false">1023</guid><pubDate>Fri, 26 Jun 2026 22:07:11 +0000</pubDate></item><item><title>Any Legit GGOrbwalk setting or all in one config file</title><link>https://gamingonsteroids.com/topic/1024-any-legit-ggorbwalk-setting-or-all-in-one-config-file/</link><description><![CDATA[<p>
	Like the tilte says any good legit config
</p>
]]></description><guid isPermaLink="false">1024</guid><pubDate>Sat, 27 Jun 2026 00:31:12 +0000</pubDate></item><item><title>Zgjfjfl Super All-In-One - Added Support Locke (v26.13)</title><link>https://gamingonsteroids.com/topic/231-zgjfjfl-super-all-in-one-added-support-locke-v2613/</link><description><![CDATA[<p>
	<span style="color:#e74c3c;"><span style="font-size:20px;"><span class="ipsEmoji">🔥</span> Zgjfjfl Super All-in-One</span></span>
</p>

<p>
	&gt; Currently, it supports more than 80 champions.
</p>

<p>
	━━━━━━━━━━━━━━━━━━━━━━━━━━
</p>

<p>
	<span style="color:#000000;"><span style="font-size:20px;"><span class="ipsEmoji">🎮</span> Supported Champions</span></span>
</p>

<p>
	▶ ADC<br />
	Aphelios, Ashe, Caitlyn, Ezreal, Jhin, Jinx, Kaisa, Kalista, KogMaw, Lucian, MissFortune, Nilah, Samira, Sivir, Smolder, Tristana, Twitch, Varus, Vayne, Xayah, Yunara, Zeri
</p>

<p>
	▶ MID<br />
	Ahri, Anivia, AurelionSol, Aurora, Cassiopeia, Corki, Galio, Heimerdinger, Hwei, Lissandra, Locke, Malzahar, Mel, Neeko, Orianna, Ryze, Syndra, TwistedFate, Veigar, Vex, Viktor, Ziggs
</p>

<p>
	▶ TOP<br />
	Ambessa, DrMundo, Gnar, Jayce, KSante, Nasus, Ornn, Singed, Trundle, Urgot, Yorick, Zaahen
</p>

<p>
	▶ JUNGLE<br />
	Belveth, Briar, Gragas, Ivern, JarvanIV, Maokai, Poppy, Sejuani, Shyvana, Skarner, Taliyah, Udyr
</p>

<p>
	▶ SUPPORT<br />
	Bard, Blitzcrank, Brand, Braum, Karma, Lux, Milio, Nautilus, Pyke, Rakan, Senna, Seraphine, Soraka, Swain, Thresh, Velkoz, Xerath, Zyra
</p>

<p>
	━━━━━━━━━━━━━━━━━━━━━━━━━━
</p>

<p>
	<span style="color:#000000;"><span style="font-size:20px;">⚙ Required Files</span></span>
</p>

<p>
	<a href="https://raw.githubusercontent.com/4risto/GoS/master/GGOrbwalker.lua" rel="external nofollow">GGOrbwalker.lua</a><br />
	<a href="https://raw.githubusercontent.com/4risto/GoS/master/GGPrediction.lua" rel="external nofollow">GGPrediction.lua</a>
</p>

<p>
	<span style="font-size:12px;">(Right-click the link and select "Save the link as" to download)</span>
</p>

<p>
	━━━━━━━━━━━━━━━━━━━━━━━━━━
</p>

<p>
	<span style="color:#e74c3c;"><span style="font-size:20px;">⬇ DOWNLOAD</span></span>
</p>

<p>
	<span style="font-size:18px;"><a href="https://raw.githubusercontent.com/zgjfjfl/GOSEXT/master/ZgjfjflAIO.lua" rel="external nofollow">[ ZgjfjflAIO.lua ]</a>  </span><span style="font-size:12px;">&gt;AIO Main Loader</span><br />
	<br />
	<span style="font-size:18px;">[<a href="https://github.com/zgjfjfl/GOSEXT/raw/refs/heads/main/ZgjfjflAIO.zip" rel="external nofollow">ZgjfjflAIO.zip</a>]  </span><span style="font-size:12px;"> &gt;The complete folder contains all supported champion scripts.</span>
</p>

<p>
	<span style="font-size:12px;">(Right-click the link and select "Save the link as" to download)</span>
</p>

<p>
	━━━━━━━━━━━━━━━━━━━━━━━━━━
</p>

<p>
	<span style="color:#000000;"><span style="font-size:20px;"><span class="ipsEmoji">📝</span> Installation</span></span><br />
	1. Put ZgjfjflAIO.lua and <span>GGOrbwalker.lua</span> into your Scripts folder, <span>GGPrediction.lua into Common folder,<br />
	    or <span style="color:#e74c3c;">Download ZgjfjflAIO.zip, extract and merge the ‘Scripts’ folder into ‘GamingOnSteroids\LOLEXT\Scripts’.</span></span>
</p>

<ul>
	<li>
		<span><span style="color:#e74c3c;">(After the initial injection is successful, the GamingOnSteroids/LOLEXT folder will auto extract next to EXT.exe)</span></span>
	</li>
</ul>

<p>
	2. Launch the game, F6 select<span style="font-size:12px;"> </span><span>GGOrbwalker.lua &amp; </span>ZgjfjflAIO.lua<br />
	3. Auto-download other required files / auto-update, press F6 to reload on demand<br />
	4. Enjoy
</p>

<p>
	━━━━━━━━━━━━━━━━━━━━━━━━━━
</p>

<p>
	<span style="color:#000000;"><span style="font-size:20px;"><span class="ipsEmoji">📌</span> Notes</span></span>
</p>

<p>
	• AIO supports auto-download / auto-update<br />
	• More champions will be added in future updates<br />
	• Report bugs or suggestions below
</p>

<p>
	━━━━━━━━━━━━━━━━━━━━━━━━━━
</p>

<p>
	<span style="font-size:16px;"><span class="ipsEmoji">❤️</span> Thanks for using Zgjfjfl AIO</span>
</p>
]]></description><guid isPermaLink="false">231</guid><pubDate>Sat, 09 May 2026 23:32:47 +0000</pubDate></item><item><title>Yasuo script</title><link>https://gamingonsteroids.com/topic/1010-yasuo-script/</link><description><![CDATA[<p>
	I used an old script from Depressiv as a basis, reworked a lot of things, including combos, beyblade, and script logic, and removed old errors that were interfering with the proper functioning of the script.<br />
	I'm not 100% done yet, but I'll finish improving this script soon.<br />
	To run the script, place it in the following path: GamingOnSteroids\LOLEXT\Scripts\Common\DepressiveAIONext\Champions
</p>

<p>
	<a class="ipsAttachLink" data-fileid="357" href="https://gamingonsteroids.com/applications/core/interface/file/attachment.php?id=357&amp;key=30fa4a34ffc7e41aa22a43fa63c70483" data-fileext="lua" rel="">Yasuo.lua</a>
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1010</guid><pubDate>Sat, 20 Jun 2026 20:37:42 +0000</pubDate></item><item><title>Staying undetected in 2026 with EXTP.</title><link>https://gamingonsteroids.com/topic/408-staying-undetected-in-2026-with-extp/</link><description><![CDATA[<p>
	To reduce traces towards GOS in 2026, the %appdata% thing will become part of the past. In the future the folder "GamingOnSteroids" will be sitting next to the .exe file (in whatever folder the user is running it from, could be a USB stick)
</p>

<p>
	Not to mention the private bypass method (making EXTP fully undetected) which you can read about here 
</p>
<iframe allowfullscreen="" data-embedauthorid="33" data-embedcontent="" data-embedid="embed1347613808" data-embed-src="https://gamingonsteroids.com/topic/230-how-to-stay-ud/?do=embed"></iframe>

<p>
	 
</p>
]]></description><guid isPermaLink="false">408</guid><pubDate>Wed, 13 May 2026 19:03:14 +0000</pubDate></item><item><title>Lol Champion/Utility Scripts Lists/Database</title><link>https://gamingonsteroids.com/topic/916-lol-championutility-scripts-listsdatabase/</link><description><![CDATA[<p>
	<span style="font-size:18px;"><strong>Can find out which champions are supported by the scripts here:</strong></span>
</p>

<p>
	<span style="font-size:16px;"><a href="https://lolscriptsdatabase.blogspot.com/" rel="external nofollow">https://lolscriptsdatabase.blogspot.com/</a></span>
</p>

<p>
	<strong><span style="font-size:14px;">and for the latest public scripts(Posted after everything was deleted) can check this section: </span></strong><a href="https://gamingonsteroids.com/forum/9-general-features/" rel="">https://gamingonsteroids.com/forum/9-general-features/</a>
</p>

<p>
	 
</p>

<p>
	Cheers! 
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">916</guid><pubDate>Mon, 01 Jun 2026 19:57:58 +0000</pubDate></item></channel></rss>
