Unlock Noose Outfit Script for Yim Menu Agents of Sabotage
GTA V Clothing & Accessory Unlock IDs (Packed Stat List)
Here is a large list of all the unique clothing, necklaces, hats, and holiday clothing in GTA V, and their packed stat IDs. The IDs and clothing will be used when using modding tools (Lua-based) or unlocker scripts, to unlock clothing that is exclusive or limited time only. This is for educational use of personal use or in a solo session.
To unlock these clothes you will need to do things like use stats.setpackedstatbool(statid, true) in a lua environment like Yim Menu.
🚔 Law Enforcement Outfits
– Winter Highway Patrol w/Tie
– Winter Highway Patrol
– Summer Highway Patrol w/Tie
– Summer Highway Patrol
– NOOSE Outfit
– Winter LSPD Officer w/Tie
– Winter LSPD Officer
– Summer LSPD Officer w/Tie
– Summer LSPD Officer
💎 Pendants & Jewelry
– 420 Gold Pendant
– 420 Silver Pendant
– 420 Rose Gold Pendant
– Snake Soul Pendant
– Snake King Pendant
– Gold Reindeer Pendant
– Silver Reindeer Pendant
🧢 Themed Hats & headwear
– Red Snake Soul Forwards Cap
– Gray Snake King Forwards Cap
– Gong Xi Fa Cai Forwards Cap
– Green 420 Festival Hat
– Rainbow 420 Festival Hat
🎄 Festive & Season Outfits
– Festive Penguin Onesie
– Festive Reindeer Onesie
– Festive Cluckin’ Bell Onesie
– Festive White Ho Ho Ho Onesie
– Festive Gold Ho Ho Ho Onesie
– Festive Green 420 festival outfit
– Festive Rainbow 420 festival outfit
– Festive Bald Eagle outfit
🎉 Celebration & Holiday Gear
– Champagne Pop Fitted
– Gold Star Fitted
– Champagne Pop Pants
– Gold Star Pants
– Krampus Sweater
– Red Serpent Leather Jacket
💘 Valentine’s Day & Carnival
– Heartbreaker Robe
– Heartbreaker Boxer Shorts (Male only)
– Heartbreaker Bustier (Female only)
– Carnival Feather Dress (Female only)
– Carnival Feather Shirt (Male only)
– Carnival Feather Shorts (Male only)
🧢 Special Event Tees & Hoodies
– Blarneys Stout Tee
– Güffy Drug Rug Hoodie
– Yeti Earth Day Hoodie
🐍 Yogarishima Outfit
– Black Snake Yogarishima Outfit
📦 Unlocking these items in game
You can unlock these items using a lua script function by just typing stats.setpackedstatbool(statid, true). For example stats.setpackedstatbool(54580, true) will unlock Gold 420 Pendant. You can use the example code above for the other ids to unlock the rest.
⚠️ Disclaimer
Use at your own risk. This should only be for educational purposes and for offline play. Unlocking these items again, through a public lobby, may violate terms of online play for the game, and we do not want to instigate anyone. Please just be responsible, and back up your profile before making any changes.
📎 Need lua scripts to unlock these?
We also have all working unlocker scripts, which you could use with your preferred lua exe or menu execution mode.
Modded Outfits:
As I guess you all know, the outfit editor is a bit strange compared to other outfit tools, but I would like to know if it is possible to find presets somewhere, if in doubt I will leave you the one I use should you like it
Is there a way to be able to change the character from male to female and save it?
I tried to clone a female player character, but the result was not the best (I had a female body with a male head lol)
Answer :
You can change your model to female although it will revert next time you change sessions, if you want a permanent solution then use a script like extras addonnto change your gender.
Code:
local wasabi_words = gui.get_tab("GUI_TAB_NETWORK"):add_tab("Unlock All") --WasabiWords™️
local function unlock_packed_bools(from, to)
for i = from, to do
stats.set_packed_stat_bool(i, true)
end
end
local function buy_weapon(weapon_joaat)
if NETSHOPPING.NET_GAMESERVER_BASKET_IS_ACTIVE() then
NETSHOPPING.NET_GAMESERVER_BASKET_END()
end
local started, transaction_id = NETSHOPPING.NET_GAMESERVER_BASKET_START(0, joaat('CATEGORY_WEAPON'), joaat('NET_SHOP_ACTION_SPEND'), 4)
local basket_item = memory.allocate(32) --It will crash if we deallocate this after calling, so we will just have to leak 32 bytes.
local basket_add_item = basket_item:get_address()
basket_item:set_qword(weapon_joaat)
basket_item = basket_item:add(8)
basket_item:set_qword(0)
basket_item = basket_item:add(8)
local price = NETSHOPPING.NET_GAMESERVER_GET_PRICE(weapon_joaat, joaat('CATEGORY_WEAPON'), 1)
basket_item:set_qword(price)
basket_item = basket_item:add(8)
basket_item:set_qword(1)
NETSHOPPING.NET_GAMESERVER_BASKET_ADD_ITEM(basket_add_item, 1)
NETSHOPPING.NET_GAMESERVER_CHECKOUT_START(transaction_id)
end
local function unlock_all_character_awards()
if network.is_session_started() then
local mp_stats_char_mapping_data = memory.scan_pattern("48 8D 0D ? ? ? ? 8B D6 48 8B 5C 24 ? 48 8B 74 24"):add(3):rip()
if mp_stats_char_mapping_data:is_valid() then
local mp_int_awards_data = mp_stats_char_mapping_data:add(0xC8)
local mp_bool_awards_data = mp_stats_char_mapping_data:add(0xF8)
local max_mp_int_awards_index = mp_int_awards_data:add(0x08):get_int()
local max_mp_bool_awards_index = mp_bool_awards_data:add(0x08):get_int()
for index = 0, max_mp_int_awards_index - 1 do
local stat_hash = STATS.GET_STAT_HASH_FOR_CHARACTER_STAT_(8, index, stats.get_character_index())
local _, current_value = STATS.STAT_GET_INT(stat_hash, current_value, -1)
local platinum_value = scr_function.call_script_function("main_persistent", "GIASV", "2D 03 05 00 00 38 02 71", "int", {
{ "int", index }, -- Award Index
{ "int", 5 }, -- Award Stage (5 is platinum)
{ "int", 0 } -- ???
})
if current_value < platinum_value then
STATS.STAT_SET_INT(stat_hash, platinum_value, true)
end
end
for index = 0, max_mp_bool_awards_index - 1 do
local stat_hash = STATS.GET_STAT_HASH_FOR_CHARACTER_STAT_(10, index, stats.get_character_index())
local _, current_value = STATS.STAT_GET_BOOL(stat_hash, current_value, -1)
if not current_value then
STATS.STAT_SET_BOOL(stat_hash, true, true)
end
end
end
end
end
Graphical Instructions : How to Inject Script With Menu
Step 1 : Make Sure you have Copied the already Yim Menu files and everything like FSL, Then Inject the Menu asusual on the Launchpad
Step 2 : Later on Join the FreeMode Session / Lobby / Solo Session as your comfortable with any of it then try to Open Yim Menu by Pressing “INSERT” Key, Then open the Settings > Lua Scripts > Open Lua Scripts Folder, once the Folder has been opened then copy and paste the script which you have downloaded into that scripts folder, as on the picture below
Step 5 : So at the end you will be having a cool NOOSE outfit either for your personal purpose or any kind of scenario purpose Hope you like it!
Adding LUA Scripts to YimMenu
Once you have download the script(s) that you want to add to N3nyoo, you will need to add the files to the menu. To do this:
1). Open YimMenu in-game
2). Go to Settings > LUA Scripts > Open LUA Scripts Folder. This will open the file directory for YimMenu.
3). Open the “scripts” folder, then drag and drop (or paste) the .lua files into the folder.
4). Go back Yim Menu and click “Reload All”, the scripts will now be available in the menu.
In-Game Pictures:
Video of the Script
Credits to Dev – #Gabrielluan12, CheatChris (Github), & L7negSharing the Bools
Frequently Asked Questions