League of Maidens Cheat Tutorial
-
- Noobzor
- Posts: 5
- Joined: Thu Mar 11, 2021 2:23 pm
- Reputation: 0
Re: League of Maidens Cheat Tutorial
Guys,with the help of dnspy, I found the files that are responsible for finding naked everywhere. Who knows where to change the value so that the game thinks it was bought from me?
Re: League of Maidens Cheat Tutorial
how would one go about making that 3 time daily battle mission repayable endlessly? as far as i can tell it's responsible for the guardian level xp gains
Re: League of Maidens Cheat Tutorial
You would at least throw off this place of the code, how can we help you so much?Soso4ek228 wrote: ↑Fri Mar 12, 2021 11:09 amGuys,with the help of dnspy, I found the files that are responsible for finding naked everywhere. Who knows where to change the value so that the game thinks it was bought from me?
Re: League of Maidens Cheat Tutorial
HOLY SHIT YOU FIGURED IT OUT!susahnamanya wrote: ↑Fri Mar 12, 2021 6:44 amI'm not your lord, lol. But okay, I'll grant you your wish.raxele123 wrote: ↑Fri Mar 12, 2021 3:01 amgreat explanation lol. btw milord can you figure out how to make it so. if you set the midbossdes drop rate to 100% for all 9 items, and you kill the stronghold boss, you get all 9 of those items instead of just 1? that would speed things up by 9x or something among the lines of that, i heard you crash if you set more than 3 to 100% or something. not that setting 3 of them to 100% even does shit since you'll keep getting the one which used to have the lower drop rate.
Find ClaimNow in NewUI_MidBoss. Scroll down to line 249, you will see:Change it to:Code: Select all
list.Add(GlobalVar.MidBossRewardID0[num]);
You can do the same for other bosses below it. Just change the MidBossRewardID# from script above.Code: Select all
for (int drop = GlobalVar.MidBossRewardDropChance.Length - 1; drop >= 0; drop--) { list.Add(GlobalVar.MidBossRewardID0[drop]); }
100%? Why need to change to 100%? Now you don't need to change it anymore, all will be given to you.
lol i crash when I try doing it the second time. so i guess i have to relog every time i turn it in, still. better than one item every relog. wfarrr better.
-
- Novice Cheater
- Posts: 16
- Joined: Tue Aug 21, 2018 8:01 pm
- Reputation: 6
Re: League of Maidens Cheat Tutorial
Is there a way to get unlimited stamina?
Re: League of Maidens Cheat Tutorial
well I mean you can use cheat engine and float to search the quantity of stamina tickets. unless youre talking about movement stamina then im not sure. thats a bit fucky. if I were you I would just set the SP regen thing to 100 or so. changing SP might make it so you cant fly in my case.
Re: League of Maidens Cheat Tutorial
Yeah i was wondering about the movement stamina.
Is there a way to modify the effects of items? because the Stamina Flask gives you unlimited Stamina for 120 seconds, it would be cool to extend those 2 minutes to 2 hours xD
Is there a way to modify the effects of items? because the Stamina Flask gives you unlimited Stamina for 120 seconds, it would be cool to extend those 2 minutes to 2 hours xD
-
- Novice Cheater
- Posts: 16
- Joined: Tue Aug 21, 2018 8:01 pm
- Reputation: 6
Re: League of Maidens Cheat Tutorial
There is actually a way to get infinite stamina. I've been using it for a while. I didn't share it here because I thought it was doable with CE. But if you need it, go to NewPlayerControl, line 6651-6683, change it to this:
Code: Select all
if (this.SuperSprint && this.isMoving && !this.ST_isTag(this.BEGPIEIGIAF) && CharacterBoneControl.MyForm != 1)
{
if (this.fly)
{
GlobalVar.MYSP -= 0f;
}
else
{
GlobalVar.MYSP -= 0f;
}
}
else if (this.COOHKJANKNN && this.isMoving && !this.ST_isTag(this.BEGPIEIGIAF) && CharacterBoneControl.MyForm != 1)
{
if (this.fly)
{
GlobalVar.MYSP -= 0f;
}
else
{
GlobalVar.MYSP -= 0f;
}
}
else if (this.fly && !this.ST_isTag(this.BEGPIEIGIAF) && CharacterBoneControl.MyForm != 1)
{
if (this.isMoving)
{
GlobalVar.MYSP -= 0f;
}
else
{
GlobalVar.MYSP -= 0f;
}
}
Re: League of Maidens Cheat Tutorial
sorry milord, there are a LOT of things under "newplayercontrol"susahnamanya wrote: ↑Sat Mar 13, 2021 4:17 amThere is actually a way to get infinite stamina. I've been using it for a while. I didn't share it here because I thought it was doable with CE. But if you need it, go to NewPlayerControl, line 6651-6683, change it to this:Code: Select all
if (this.SuperSprint && this.isMoving && !this.ST_isTag(this.BEGPIEIGIAF) && CharacterBoneControl.MyForm != 1) { if (this.fly) { GlobalVar.MYSP -= 0f; } else { GlobalVar.MYSP -= 0f; } } else if (this.COOHKJANKNN && this.isMoving && !this.ST_isTag(this.BEGPIEIGIAF) && CharacterBoneControl.MyForm != 1) { if (this.fly) { GlobalVar.MYSP -= 0f; } else { GlobalVar.MYSP -= 0f; } } else if (this.fly && !this.ST_isTag(this.BEGPIEIGIAF) && CharacterBoneControl.MyForm != 1) { if (this.isMoving) { GlobalVar.MYSP -= 0f; } else { GlobalVar.MYSP -= 0f; } }
-
- Novice Cheater
- Posts: 16
- Joined: Tue Aug 21, 2018 8:01 pm
- Reputation: 6
Re: League of Maidens Cheat Tutorial
Yea, that's why I said line 6651-6683. Finding stuff is a pain here.
I searched a bit, you can find BEGPIEIGIAF, double click then analyze, then Read By, double click on NewPlayerControl.Update.
Re: League of Maidens Cheat Tutorial
This works flawlessly, thank you so much!raxele123 wrote: ↑Sat Mar 13, 2021 4:52 amsorry milord, there are a LOT of things under "newplayercontrol"susahnamanya wrote: ↑Sat Mar 13, 2021 4:17 amThere is actually a way to get infinite stamina. I've been using it for a while. I didn't share it here because I thought it was doable with CE. But if you need it, go to NewPlayerControl, line 6651-6683, change it to this:Code: Select all
if (this.SuperSprint && this.isMoving && !this.ST_isTag(this.BEGPIEIGIAF) && CharacterBoneControl.MyForm != 1) { if (this.fly) { GlobalVar.MYSP -= 0f; } else { GlobalVar.MYSP -= 0f; } } else if (this.COOHKJANKNN && this.isMoving && !this.ST_isTag(this.BEGPIEIGIAF) && CharacterBoneControl.MyForm != 1) { if (this.fly) { GlobalVar.MYSP -= 0f; } else { GlobalVar.MYSP -= 0f; } } else if (this.fly && !this.ST_isTag(this.BEGPIEIGIAF) && CharacterBoneControl.MyForm != 1) { if (this.isMoving) { GlobalVar.MYSP -= 0f; } else { GlobalVar.MYSP -= 0f; } }
Re: League of Maidens Cheat Tutorial
Could i change the size of my character or to boost the Size matters skill, or unlock size matters code?
-
- Noobzor
- Posts: 12
- Joined: Sat Mar 13, 2021 7:28 pm
- Reputation: 0
Re: League of Maidens Cheat Tutorial
So is there a way to get more gold with this
-
- What is cheating?
- Posts: 3
- Joined: Tue Mar 09, 2021 2:14 pm
- Reputation: 0
Re: League of Maidens Cheat Tutorial
Last edited by DemaShinku on Sat Mar 13, 2021 9:41 pm, edited 2 times in total.
Who is online
Users browsing this forum: No registered users