Legends of Idleon
-
- Noobzor
- Posts: 7
- Joined: Wed Jul 05, 2023 6:26 am
- Reputation: 0
Re: Legends of Idleon
i really have 0 idea how to download the cheat engine file / injector and i want to do it manually but it seems that my cheat engine wont work porperly or the dev just rewrite the code so i dont know how to change item number , if som1 can tell me how to download the file and give me some turtorial it will help me alot XD
Re: Legends of Idleon
viewtopic.php?p=268697#p268697islewantmore wrote: ↑Sat Dec 30, 2023 1:20 pmi really have 0 idea how to download the cheat engine file / injector and i want to do it manually but it seems that my cheat engine wont work porperly or the dev just rewrite the code so i dont know how to change item number , if som1 can tell me how to download the file and give me some turtorial it will help me alot XD
Re: Legends of Idleon
Well i went on some work for some of the people here.
First something i wanted as it annoyed me a shit ton:
A Unlock Current Portal function just so you can unlock the current portal of the map you are on.
Then we have something i added just incase of shadowbans because of items you have from packs:
These are all Packs you can buy in the game with the necessary "entry" in the account for the pack being purchased!
And for the last part i searched an hour for to find this. This is the array where all your slab progress is saved:
bEngine.gameAttributes.h.Cards[1]
to add items to the slab just
to remove items from the slab just
AND FOR THE REALLY LAZY ONES WHO JUST WANNA "FILL" THEIR SLAB
First something i wanted as it annoyed me a shit ton:
A Unlock Current Portal function just so you can unlock the current portal of the map you are on.
unlock current map addition
registerCheats({
name: 'unlock',
message: 'unlock portals, rifts, pearls, presets, quickref, teleports, colloseum, silver pens, revives',
canToggleSubcheats: true,
subcheats: [
{
name: 'portals',
fn: function (params) {
bEngine.getGameAttribute("KillsLeft2Advance").map(entry => {
for(i=0; i < entry.length; i++) entry = 0;
return entry; });
return `The portals have been unlocked!`;
}
},
{ name: 'divinitypearl', message: 'divinity pearls > lvl50' },
{ name: 'presets', message: 'preset changes everywhere' },
{ name: 'quickref', message: 'quickref.' },
{ name: 'teleports', message: 'free teleports.' },
{ name: 'tickets', message: 'free colosseum tickets.' },
{ name: 'silvpen', message: 'free silver pens.' },
{ name: 'goldpen', message: 'free gold pens.' },
{ name: 'obolfrag', message: 'free obol fragments.' },
{ name: 'rifts', message: 'Unlock rift portals' },
{ name: 'revive', message: 'unlimited revives' },
{ name: 'islands', message: 'unlock islands' },
{ name: 'currentportal', message: 'unlocks the current maps portal',
fn: function (params) {
bEngine.getGameAttribute("KillsLeft2Advance")[bEngine.getGameAttribute("CurrentMap")] = 0;
return `The portals have been unlocked!`;
}
}
],
});
name: 'unlock',
message: 'unlock portals, rifts, pearls, presets, quickref, teleports, colloseum, silver pens, revives',
canToggleSubcheats: true,
subcheats: [
{
name: 'portals',
fn: function (params) {
bEngine.getGameAttribute("KillsLeft2Advance").map(entry => {
for(i=0; i < entry.length; i++) entry = 0;
return entry; });
return `The portals have been unlocked!`;
}
},
{ name: 'divinitypearl', message: 'divinity pearls > lvl50' },
{ name: 'presets', message: 'preset changes everywhere' },
{ name: 'quickref', message: 'quickref.' },
{ name: 'teleports', message: 'free teleports.' },
{ name: 'tickets', message: 'free colosseum tickets.' },
{ name: 'silvpen', message: 'free silver pens.' },
{ name: 'goldpen', message: 'free gold pens.' },
{ name: 'obolfrag', message: 'free obol fragments.' },
{ name: 'rifts', message: 'Unlock rift portals' },
{ name: 'revive', message: 'unlimited revives' },
{ name: 'islands', message: 'unlock islands' },
{ name: 'currentportal', message: 'unlocks the current maps portal',
fn: function (params) {
bEngine.getGameAttribute("KillsLeft2Advance")[bEngine.getGameAttribute("CurrentMap")] = 0;
return `The portals have been unlocked!`;
}
}
],
});
Then we have something i added just incase of shadowbans because of items you have from packs:
These are all Packs you can buy in the game with the necessary "entry" in the account for the pack being purchased!
Buy Packs Cheats
//Gem Pack Cheats
registerCheats(
{
name: 'buy',
message: 'buy gem shop packs',
canToggleSubcheats: true,
subcheats: [
{
name: "Starter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_c"]=1;
actorEvents189._customBlock_DropSomething("TimeCandy1", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("TimeCandy3", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack1", 4, 0, 0, 2, y, 0, x, y);
return `The Starter Pack has been bought!`;
}
},
{
name: "Auto Loot Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_i"]=1;
actorEvents189._customBlock_DropSomething("PremiumGem", 900, 0, 0, 2, y, 0, x, y);
return `The Auto Loot Pack has been bought!`;
}
},
{
name: "Gem Motherlode Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_m"]=1;
actorEvents189._customBlock_DropSomething("Quest71", 100, 0, 0, 2, y, 0, x, y);
return `The Gem Motherlode Pack has been bought!`;
}
},
{
name: "Lava Supporter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_a"]=1;
actorEvents189._customBlock_DropSomething("Trophy8", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy3", 7, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4200, 0, 0, 2, y, 0, x, y);
return `The Lava Supporter Pack has been bought!`;
}
},
{
name: "New Year Supporter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_b"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats45", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack1", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2021, 0, 0, 2, y, 0, x, y);
return `The New Year Pack has been bought!`;
}
},
{
name: "Totally Chill Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_e"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats62", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack3", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy5", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `The Totally Chill Pack has been bought!`;
}
},
{
name: "Dungeon Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_g"]=1;
actorEvents189._customBlock_DropSomething("CardPack4", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4000, 0, 0, 2, y, 0, x, y);
return `The Dungeon Bundle has been bought!`;
}
},
{
name: "Outta This World Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_j"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape0", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack5", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4300, 0, 0, 2, y, 0, x, y);
return `The Outta This World Pack has been bought!`;
}
},
{
name: "Super Hot Fire Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_l"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape7", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack6", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest72", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest73", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4300, 0, 0, 2, y, 0, x, y);
return `Super Hot Fire Pack has been bought!`;
}
},
{
name: "Riftwalker Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_n"]=1;
actorEvents189._customBlock_DropSomething("EquipmentNametag1", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("EquipmentCape11", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack5", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack6", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 6400, 0, 0, 2, y, 0, x, y);
return `Riftwalker Pack has been bought!`;
}
},
{
name: "Bloomin Pet Pack !NO PET CRYSTALS!",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_o"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape12", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `Bloomin Pet Pack (No Pet Crystals) has been bought!`;
}
},
{
name: "Island Explorer Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_p"]=1;
actorEvents189._customBlock_DropSomething("EquipmentNametag7", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4400, 0, 0, 2, y, 0, x, y);
return `Island Explorer Pack has been bought!`;
}
},
{
name: "Equinox Dreamer Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_q"]=1;
actorEvents189._customBlock_DropSomething("EquipmentRingsChat11", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `Equinox Dreamer Pack has been bought!`;
}
},
{
name: "Eggscellent Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_k"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape2", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest42", 250, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest44", 60, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2500, 0, 0, 2, y, 0, x, y);
return `Eggscellent Pack has been bought!`;
}
},
{
name: "Easter Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_d"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats57", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 5, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy3", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2500, 0, 0, 2, y, 0, x, y);
return `Easter Bundle has been bought!`;
}
},
{
name: "Summer Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_f"]=1;
actorEvents189._customBlock_DropSomething("Trophy14", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 20, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("GemP9", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2000, 0, 0, 2, y, 0, x, y);
return `Summer Bundle has been bought!`;
}
},
{
name: "Giftmas Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_h"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats69", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest64", 250, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2021, 0, 0, 2, y, 0, x, y);
return `The Giftmas Bundle has been bought!`;
}
}
]
}
);
registerCheats(
{
name: 'buy',
message: 'buy gem shop packs',
canToggleSubcheats: true,
subcheats: [
{
name: "Starter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_c"]=1;
actorEvents189._customBlock_DropSomething("TimeCandy1", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("TimeCandy3", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack1", 4, 0, 0, 2, y, 0, x, y);
return `The Starter Pack has been bought!`;
}
},
{
name: "Auto Loot Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_i"]=1;
actorEvents189._customBlock_DropSomething("PremiumGem", 900, 0, 0, 2, y, 0, x, y);
return `The Auto Loot Pack has been bought!`;
}
},
{
name: "Gem Motherlode Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_m"]=1;
actorEvents189._customBlock_DropSomething("Quest71", 100, 0, 0, 2, y, 0, x, y);
return `The Gem Motherlode Pack has been bought!`;
}
},
{
name: "Lava Supporter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_a"]=1;
actorEvents189._customBlock_DropSomething("Trophy8", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy3", 7, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4200, 0, 0, 2, y, 0, x, y);
return `The Lava Supporter Pack has been bought!`;
}
},
{
name: "New Year Supporter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_b"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats45", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack1", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2021, 0, 0, 2, y, 0, x, y);
return `The New Year Pack has been bought!`;
}
},
{
name: "Totally Chill Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_e"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats62", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack3", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy5", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `The Totally Chill Pack has been bought!`;
}
},
{
name: "Dungeon Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_g"]=1;
actorEvents189._customBlock_DropSomething("CardPack4", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4000, 0, 0, 2, y, 0, x, y);
return `The Dungeon Bundle has been bought!`;
}
},
{
name: "Outta This World Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_j"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape0", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack5", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4300, 0, 0, 2, y, 0, x, y);
return `The Outta This World Pack has been bought!`;
}
},
{
name: "Super Hot Fire Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_l"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape7", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack6", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest72", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest73", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4300, 0, 0, 2, y, 0, x, y);
return `Super Hot Fire Pack has been bought!`;
}
},
{
name: "Riftwalker Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_n"]=1;
actorEvents189._customBlock_DropSomething("EquipmentNametag1", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("EquipmentCape11", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack5", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack6", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 6400, 0, 0, 2, y, 0, x, y);
return `Riftwalker Pack has been bought!`;
}
},
{
name: "Bloomin Pet Pack !NO PET CRYSTALS!",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_o"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape12", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `Bloomin Pet Pack (No Pet Crystals) has been bought!`;
}
},
{
name: "Island Explorer Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_p"]=1;
actorEvents189._customBlock_DropSomething("EquipmentNametag7", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4400, 0, 0, 2, y, 0, x, y);
return `Island Explorer Pack has been bought!`;
}
},
{
name: "Equinox Dreamer Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_q"]=1;
actorEvents189._customBlock_DropSomething("EquipmentRingsChat11", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `Equinox Dreamer Pack has been bought!`;
}
},
{
name: "Eggscellent Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_k"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape2", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest42", 250, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest44", 60, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2500, 0, 0, 2, y, 0, x, y);
return `Eggscellent Pack has been bought!`;
}
},
{
name: "Easter Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_d"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats57", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 5, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy3", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2500, 0, 0, 2, y, 0, x, y);
return `Easter Bundle has been bought!`;
}
},
{
name: "Summer Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_f"]=1;
actorEvents189._customBlock_DropSomething("Trophy14", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 20, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("GemP9", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2000, 0, 0, 2, y, 0, x, y);
return `Summer Bundle has been bought!`;
}
},
{
name: "Giftmas Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_h"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats69", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest64", 250, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2021, 0, 0, 2, y, 0, x, y);
return `The Giftmas Bundle has been bought!`;
}
}
]
}
);
And for the last part i searched an hour for to find this. This is the array where all your slab progress is saved:
bEngine.gameAttributes.h.Cards[1]
to add items to the slab just
bEngine.gameAttributes.h.Cards[1].push("itemName")
to remove items from the slab just
bEngine.gameAttributes.h.Cards[1].splice(bEngine.gameAttributes.h.Cards[1].indexOf("itemName"), 1)
AND FOR THE REALLY LAZY ONES WHO JUST WANNA "FILL" THEIR SLAB
bEngine.gameAttributes.h.Cards[1] = bEngine.gameAttributes.h.CustomLists.h.SlabItemSort
Last edited by ImHope on Wed Jan 03, 2024 10:18 pm, edited 2 times in total.
Re: Legends of Idleon
Check your code! Some bundles contains wrong rewardsImHope wrote: ↑Mon Jan 01, 2024 9:24 pm
Then we have something i added just incase of shadowbans because of items you have from packs:
These are all Packs you can buy in the game with the necessary "entry" in the account for the pack being purchased!Buy Packs Cheats
//Gem Pack Cheats
registerCheats(
{
name: 'buy',
message: 'buy gem shop packs',
canToggleSubcheats: true,
subcheats: [
{
name: "Starter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_c"]=1;
actorEvents189._customBlock_DropSomething("TimeCandy1", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("TimeCandy3", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack1", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 1750, 0, 0, 2, y, 0, x, y);
return `The Starter Pack has been bought!`;
}
},
{
name: "Auto Loot Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_i"]=1;
actorEvents189._customBlock_DropSomething("PremiumGem", 900, 0, 0, 2, y, 0, x, y);
return `The Starter Pack has been bought!`;
}
},
{
name: "Gem Motherlode Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_m"]=1;
actorEvents189._customBlock_DropSomething("Quest71", 100, 0, 0, 2, y, 0, x, y);
return `The Starter Pack has been bought!`;
}
},
{
name: "Lava Supporter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_a"]=1;
actorEvents189._customBlock_DropSomething("Trophy8", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy3", 7, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4200, 0, 0, 2, y, 0, x, y);
return `The Lava Supporter Pack has been bought!`;
}
},
{
name: "New Year Supporter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_b"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats45", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack1", 5, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2021, 0, 0, 2, y, 0, x, y);
return `The Lava Supporter Pack has been bought!`;
}
},
{
name: "Totally Chill Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_e"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats62", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack3", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy5", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `The Totally Chill Pack has been bought!`;
}
},
{
name: "Dungeon Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_g"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats62", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack4", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4000, 0, 0, 2, y, 0, x, y);
return `The Dungeon Bundle has been bought!`;
}
},
{
name: "Outta This World Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_j"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape0", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack5", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4300, 0, 0, 2, y, 0, x, y);
return `The Outta This World Pack has been bought!`;
}
},
{
name: "Super Hot Fire Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_l"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape0", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack6", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest72", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest73", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4300, 0, 0, 2, y, 0, x, y);
return `Super Hot Fire Pack has been bought!`;
}
},
{
name: "Riftwalker Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_n"]=1;
actorEvents189._customBlock_DropSomething("EquipmentNametag1", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("EquipmentCape11", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack5", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack6", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 6400, 0, 0, 2, y, 0, x, y);
return `Riftwalker Pack has been bought!`;
}
},
{
name: "Bloomin Pet Pack (No Pet Crystals)",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_o"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape12", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `Bloomin Pet Pack (No Pet Crystals) has been bought!`;
}
},
{
name: "Island Explorer Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_p"]=1;
actorEvents189._customBlock_DropSomething("EquipmentNametag7", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4400, 0, 0, 2, y, 0, x, y);
return `Island Explorer Pack has been bought!`;
}
},
{
name: "Equinox Dreamer Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_q"]=1;
actorEvents189._customBlock_DropSomething("EquipmentRingsChat11", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `Equinox Dreamer Pack has been bought!`;
}
},
{
name: "Eggscellent Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_k"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape2", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest42", 250, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest44", 60, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2500, 0, 0, 2, y, 0, x, y);
return `Eggscellent Pack has been bought!`;
}
},
{
name: "Easter Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_d"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats57", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 5, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy3", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2500, 0, 0, 2, y, 0, x, y);
return `Easter Bundle has been bought!`;
}
},
{
name: "Summer Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_f"]=1;
actorEvents189._customBlock_DropSomething("Trophy14", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 20, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("GemP9", 20, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2000, 0, 0, 2, y, 0, x, y);
return `Summer Bundle has been bought!`;
}
},
{
name: "Giftmas Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_h"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats69", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest64", 250, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2021, 0, 0, 2, y, 0, x, y);
return `The Giftmas Bundle has been bought!`;
}
}
]
}
);
Re: Legends of Idleon
I've been using this for almost a week and for some reason whenever I open using the injectcheat.exe file it crashes and closes after the character selection screen shows up. I can login to the game regularly through steam though. Anyone else having this issue and how do I fix this?
I've tried removing all the files and re-extracting them all but that didn't fix it.
I've tried removing all the files and re-extracting them all but that didn't fix it.
Re: Legends of Idleon
I seem to be having a new issue where the F5 Injector is not finding custom.config.js. I didn't make any changes to my custom file since the previous time I ran the injector.
Re: Legends of Idleon
ImHope wrote: ↑Mon Jan 01, 2024 9:24 pm
[/spoiler]
Then we have something i added just incase of shadowbans because of items you have from packs:
These are all Packs you can buy in the game with the necessary "entry" in the account for the pack being purchased!Uncaught ReferenceError: registerCheats is not definedBuy Packs Cheats
//Gem Pack Cheats
registerCheats(
{
name: 'buy',
message: 'buy gem shop packs',
canToggleSubcheats: true,
subcheats: [
{
name: "Starter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_c"]=1;
actorEvents189._customBlock_DropSomething("TimeCandy1", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("TimeCandy3", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack1", 4, 0, 0, 2, y, 0, x, y);
return `The Starter Pack has been bought!`;
}
},
{
name: "Auto Loot Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_i"]=1;
actorEvents189._customBlock_DropSomething("PremiumGem", 900, 0, 0, 2, y, 0, x, y);
return `The Auto Loot Pack has been bought!`;
}
},
{
name: "Gem Motherlode Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_m"]=1;
actorEvents189._customBlock_DropSomething("Quest71", 100, 0, 0, 2, y, 0, x, y);
return `The Gem Motherlode Pack has been bought!`;
}
},
{
name: "Lava Supporter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_a"]=1;
actorEvents189._customBlock_DropSomething("Trophy8", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy3", 7, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4200, 0, 0, 2, y, 0, x, y);
return `The Lava Supporter Pack has been bought!`;
}
},
{
name: "New Year Supporter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_b"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats45", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack1", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2021, 0, 0, 2, y, 0, x, y);
return `The New Year Pack has been bought!`;
}
},
{
name: "Totally Chill Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_e"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats62", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack3", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy5", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `The Totally Chill Pack has been bought!`;
}
},
{
name: "Dungeon Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_g"]=1;
actorEvents189._customBlock_DropSomething("CardPack4", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4000, 0, 0, 2, y, 0, x, y);
return `The Dungeon Bundle has been bought!`;
}
},
{
name: "Outta This World Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_j"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape0", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack5", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4300, 0, 0, 2, y, 0, x, y);
return `The Outta This World Pack has been bought!`;
}
},
{
name: "Super Hot Fire Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_l"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape7", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack6", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest72", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest73", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4300, 0, 0, 2, y, 0, x, y);
return `Super Hot Fire Pack has been bought!`;
}
},
{
name: "Riftwalker Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_n"]=1;
actorEvents189._customBlock_DropSomething("EquipmentNametag1", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("EquipmentCape11", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack5", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack6", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 6400, 0, 0, 2, y, 0, x, y);
return `Riftwalker Pack has been bought!`;
}
},
{
name: "Bloomin Pet Pack !NO PET CRYSTALS!",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_o"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape12", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `Bloomin Pet Pack (No Pet Crystals) has been bought!`;
}
},
{
name: "Island Explorer Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_p"]=1;
actorEvents189._customBlock_DropSomething("EquipmentNametag7", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4400, 0, 0, 2, y, 0, x, y);
return `Island Explorer Pack has been bought!`;
}
},
{
name: "Equinox Dreamer Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_q"]=1;
actorEvents189._customBlock_DropSomething("EquipmentRingsChat11", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `Equinox Dreamer Pack has been bought!`;
}
},
{
name: "Eggscellent Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_k"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape2", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest42", 250, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest44", 60, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2500, 0, 0, 2, y, 0, x, y);
return `Eggscellent Pack has been bought!`;
}
},
{
name: "Easter Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_d"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats57", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 5, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy3", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2500, 0, 0, 2, y, 0, x, y);
return `Easter Bundle has been bought!`;
}
},
{
name: "Summer Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_f"]=1;
actorEvents189._customBlock_DropSomething("Trophy14", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 20, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("GemP9", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2000, 0, 0, 2, y, 0, x, y);
return `Summer Bundle has been bought!`;
}
},
{
name: "Giftmas Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_h"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats69", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest64", 250, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2021, 0, 0, 2, y, 0, x, y);
return `The Giftmas Bundle has been bought!`;
}
}
]
}
);
at <anonymous>
is what i get when trying to use paks cheats
Re: Legends of Idleon
So many pages i have not read all but i think i need add your code in "cheats.js" of the injector right ?ImHope wrote: ↑Mon Jan 01, 2024 9:24 pm...
Then we have something i added just incase of shadowbans because of items you have from packs:
These are all Packs you can buy in the game with the necessary "entry" in the account for the pack being purchased!...Buy Packs Cheats
//Gem Pack Cheats
registerCheats(
{
name: 'buy',
message: 'buy gem shop packs',
canToggleSubcheats: true,
subcheats: [
{
name: "Starter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_c"]=1;
actorEvents189._customBlock_DropSomething("TimeCandy1", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("TimeCandy3", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack1", 4, 0, 0, 2, y, 0, x, y);
return `The Starter Pack has been bought!`;
}
},
{
name: "Auto Loot Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_i"]=1;
actorEvents189._customBlock_DropSomething("PremiumGem", 900, 0, 0, 2, y, 0, x, y);
return `The Auto Loot Pack has been bought!`;
}
},
{
name: "Gem Motherlode Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_m"]=1;
actorEvents189._customBlock_DropSomething("Quest71", 100, 0, 0, 2, y, 0, x, y);
return `The Gem Motherlode Pack has been bought!`;
}
},
{
name: "Lava Supporter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_a"]=1;
actorEvents189._customBlock_DropSomething("Trophy8", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy3", 7, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4200, 0, 0, 2, y, 0, x, y);
return `The Lava Supporter Pack has been bought!`;
}
},
{
name: "New Year Supporter Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_b"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats45", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack1", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2021, 0, 0, 2, y, 0, x, y);
return `The New Year Pack has been bought!`;
}
},
{
name: "Totally Chill Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_e"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats62", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack3", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy5", 4, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `The Totally Chill Pack has been bought!`;
}
},
{
name: "Dungeon Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_g"]=1;
actorEvents189._customBlock_DropSomething("CardPack4", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4000, 0, 0, 2, y, 0, x, y);
return `The Dungeon Bundle has been bought!`;
}
},
{
name: "Outta This World Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_j"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape0", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack5", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4300, 0, 0, 2, y, 0, x, y);
return `The Outta This World Pack has been bought!`;
}
},
{
name: "Super Hot Fire Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_l"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape7", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack6", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest72", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest73", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4300, 0, 0, 2, y, 0, x, y);
return `Super Hot Fire Pack has been bought!`;
}
},
{
name: "Riftwalker Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_n"]=1;
actorEvents189._customBlock_DropSomething("EquipmentNametag1", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("EquipmentCape11", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack5", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("CardPack6", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 6400, 0, 0, 2, y, 0, x, y);
return `Riftwalker Pack has been bought!`;
}
},
{
name: "Bloomin Pet Pack !NO PET CRYSTALS!",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_o"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape12", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `Bloomin Pet Pack (No Pet Crystals) has been bought!`;
}
},
{
name: "Island Explorer Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_p"]=1;
actorEvents189._customBlock_DropSomething("EquipmentNametag7", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4400, 0, 0, 2, y, 0, x, y);
return `Island Explorer Pack has been bought!`;
}
},
{
name: "Equinox Dreamer Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_q"]=1;
actorEvents189._customBlock_DropSomething("EquipmentRingsChat11", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 4500, 0, 0, 2, y, 0, x, y);
return `Equinox Dreamer Pack has been bought!`;
}
},
{
name: "Eggscellent Pack",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_k"]=1;
actorEvents189._customBlock_DropSomething("EquipmentCape2", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest42", 250, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest44", 60, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2500, 0, 0, 2, y, 0, x, y);
return `Eggscellent Pack has been bought!`;
}
},
{
name: "Easter Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_d"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats57", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 5, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy3", 2, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy4", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2500, 0, 0, 2, y, 0, x, y);
return `Easter Bundle has been bought!`;
}
},
{
name: "Summer Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_f"]=1;
actorEvents189._customBlock_DropSomething("Trophy14", 1, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Timecandy2", 20, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("GemP9", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2000, 0, 0, 2, y, 0, x, y);
return `Summer Bundle has been bought!`;
}
},
{
name: "Giftmas Bundle",
fn: function (params) {
const actorEvents189 = events(189);
const character = bEngine.getGameAttribute("OtherPlayers").h[bEngine.getGameAttribute("UserInfo")[0]];
let x = character.getXCenter();
let y = character.getValue("ActorEvents_20", "_PlayerNode");
bEngine.getGameAttribute("BundlesReceived").h["bun_h"]=1;
actorEvents189._customBlock_DropSomething("EquipmentHats69", 3, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("Quest64", 250, 0, 0, 2, y, 0, x, y);
actorEvents189._customBlock_DropSomething("PremiumGem", 2021, 0, 0, 2, y, 0, x, y);
return `The Giftmas Bundle has been bought!`;
}
}
]
}
);
I try "buy Starter Pack" and i have :
Spoiler
Code: Select all
√ Action · buy Starter Pack
Error: TypeError: Cannot read property 'h' of undefined
at Aq.init (file:///D:/Steam/steamapps/common/Legends%20of%20Idleon/resources/app.asar/distBuild/static/game/N.js:1:7263985)
at Object.apply (<anonymous>:1711:22)
at zl.initScript (file:///D:/Steam/steamapps/common/Legends%20of%20Idleon/resources/app.asar/distBuild/static/game/N.js:1:1215523)
at Vj.initScripts (file:///D:/Steam/steamapps/common/Legends%20of%20Idleon/resources/app.asar/distBuild/static/game/N.js:1:1217729)
at Qb.initScripts (file:///D:/Steam/steamapps/common/Legends%20of%20Idleon/resources/app.asar/distBuild/static/game/N.js:1:1429255)
at a.createActorOfType (file:///D:/Steam/steamapps/common/Legends%20of%20Idleon/resources/app.asar/distBuild/static/game/N.js:1:1131790)
at a.getRecycledActorOfTypeOnLayer (file:///D:/Steam/steamapps/common/Legends%20of%20Idleon/resources/app.asar/distBuild/static/game/N.js:1:1131608)
at a.getRecycledActorOfType (file:///D:/Steam/steamapps/common/Legends%20of%20Idleon/resources/app.asar/distBuild/static/game/N.js:1:1129940)
at Function.c.createRecycledActor (file:///D:/Steam/steamapps/common/Legends%20of%20Idleon/resources/app.asar/distBuild/static/game/N.js:1:1183869)
at Function.p._customBlock_DropSomething (file:///D:/Steam/steamapps/common/Legends%20of%20Idleon/resources/app.asar/distBuild/static/game/N.js:1:4325754)
Spoiler
Code: Select all
√ Action · buy Island Explorer Pack
Error: TypeError: Cannot read property 'x' of null
at Qb.getXCenter (file:///D:/Steam/steamapps/common/Legends%20of%20Idleon/resources/app.asar/distBuild/static/game/N.js:1:1456938)
at Object.fn (<anonymous>:1503:35)
at Object.fn (<anonymous>:295:57)
at Object.cheat (<anonymous>:279:33)
at <anonymous>:1:7
-
- What is cheating?
- Posts: 4
- Joined: Fri Jan 12, 2024 5:18 am
- Reputation: 0
Re: Legends of Idleon
How can i fix this ?
-
- Noobzor
- Posts: 7
- Joined: Fri Dec 29, 2023 9:30 pm
- Reputation: 0
Re: Legends of Idleon
Hey, how can i reduce the number of bubbles i've discovered ? I've been a little bit too far on the kazam tree
-
- What is cheating?
- Posts: 3
- Joined: Thu Jun 16, 2022 2:58 pm
- Reputation: 0
Re: Legends of Idleon
How do i change the speed of arcade balls launching? I went through all the arcade words, but only found ballspersec, and thats the generation of balls i think.
Re: Legends of Idleon
Hey everyone,
I used this program about a year ago and have had to quit because it seemingly bricked my characters and account.
My damage says NAN and all of my attacks miss, this is happening to all of my characters, however, everything else in the game still functions as it should and I do not believe I am shadow-banned.
Does anyone know if there is a way to fix or revert whatever has caused this issue?
Thanks In Advance!
I used this program about a year ago and have had to quit because it seemingly bricked my characters and account.
My damage says NAN and all of my attacks miss, this is happening to all of my characters, however, everything else in the game still functions as it should and I do not believe I am shadow-banned.
Does anyone know if there is a way to fix or revert whatever has caused this issue?
Thanks In Advance!
Who is online
Users browsing this forum: gamekiller3000, Google Adsense [Bot], hafidz1311, sadasduck, 濒危物种猫咪