Created: 2 days ago on 05/22/2025, 04:14:19 PMUpdated: 2 days ago on 05/22/2025, 04:21:24 PM
FileType: LUA
Size: 924
Category: No category provided
Skills: Hiding, Stealth
Hotkey: No hotkey provided
Tags: No tags provided
Description: Why this one?
- Only 2 second delay (server saves, ping, etc), has hiding skill check
-- // NOTE: This is for the in-game ASSISTANT not RAZOR
-- // SET THE AMOUNT YOU WANT OF EACH
local max_hiding = 100
local max_stealth = 0
-- // NOTE: Stealth requires 80 hiding, if your max_hiding is below 80 then stealth won't be trained
-- SCRIPT BELOW --
if max_stealth > 0 and max_hiding < 80 then
Messages.Overhead('You need will not gain stealth until you SET hiding to 80 or above in the script', 69, Player.Serial)
end
while
Skills.GetValue('Hiding') < max_hiding or
(Skills.GetValue('Stealth') < max_stealth and max_hiding >= 80)
do
if Player.IsHidden and Skills.GetValue('Hiding') >= 80 then
Skills.Use('Stealth')
else
Skills.Use('Hiding')
end
Pause(2050)
end