Created: 17 days ago on 05/27/2025, 10:59:02 PMUpdated: 17 days ago on 05/27/2025, 11:12:04 PM
FileType: Razor Script (Community Edition)
Size: 3620
Description: Works on any razor supported server
Outlands, SAGAS, Secrets of Sosaria
Uses basic functions compatible with each of these versions of razors
// Stealing 0 to anti-hero (solo, no thieves guild required)
// by e-x-i-l-i-u-s
// by the time you read this, your loot is already gone
// This magical script steals from a bag on the ground and picks up that bag when we're not stealing because greedy griefing fingers are lurking everywhere
// INSTRUCTIONS
// Set all variables below to your own values
// Pick which items you want to use, at 0 skill you require 1 stone item until skill > 21
// Put all items in your inventory and put the bag-to-steal-from in your inventory
@setvar! steal_bag 0x424897F1
@setvar! your_inventory 0x40D0D07C
while not dead
// You require 10 skill for every stone (min_skill = 10 * stones) except for 1 stone (special case)
// e.g. 20 skill minimum to steal 2 stones, 30 skill minimum to steal 3 stones, etc.... but 0 skill can steal 1 stone
// You can comment out the blocks you want to skip (e.g. you can do 1 stone, 3 stone, 6 stone, etc)
if skill 'stealing' > 91
@setvar! steal_item 0x42289011
elseif skill 'stealing' > 81
// 9 stones
@setvar! steal_item 0x42289011
elseif skill 'stealing' > 71
// 7 stones
@setvar! steal_item 0x421F435A
elseif skill 'stealing' > 61
// 6 stones
@setvar! steal_item 0x42193ED2
elseif skill 'stealing' > 51
// 5 stones
@setvar! steal_item 0x420ED214
elseif skill 'stealing' > 41
// 4 stones
@setvar! steal_item 0x420ED5C2
elseif skill 'stealing' > 31
// 3 stones
@setvar! steal_item 0x4214FCE7
elseif skill 'stealing' > 21
// 2 stones
@setvar! steal_item 0x4214FCE6
else
// 1 stone
@setvar! steal_item 0x42289011
endif
clearjournal
// Wait until you can steal
while not insysmsg 'Which item'
skill 'Stealing'
waitfortarget 500
wait 500
// NOTE: We do a short delay so that we maximize the stealing time and re-correct for lag and ping etc, it'll steal when skill is available
endwhile
// Drop bag on ground
lift steal_bag 1
wait 500
droprelloc 0 0
wait 600
// Steal item from bag
target steal_item
// Put bag in your backpack while we wait for next attempt. Less time on ground.
// Prevent others from stealing it and prevent it from decaying on ground
wait 600
lift steal_bag 1
wait 600
drop your_inventory 66 65 0
// Put item back into the bag (because stealing may have put it in your inventory)
wait 1000
lift steal_item 1
wait 500
drop steal_bag -1 -1 0
wait 1000
// wait 9000
endwhile
loop