League of Maidens Cheat Tutorial

Add topics here with methods, analysis, code snippets, mods etc. for a certain game that normally won't make it in the Tables or Requests sections.
Soso4ek228
Noobzor
Noobzor
Posts: 5
Joined: Thu Mar 11, 2021 2:23 pm
Reputation: 0

Re: League of Maidens Cheat Tutorial

Post by Soso4ek228 »

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?

banhammer
Noobzor
Noobzor
Posts: 10
Joined: Wed Oct 07, 2020 9:33 pm
Reputation: 0

Re: League of Maidens Cheat Tutorial

Post by banhammer »

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

Hyba
What is cheating?
What is cheating?
Posts: 3
Joined: Mon Mar 08, 2021 7:23 am
Reputation: 1

Re: League of Maidens Cheat Tutorial

Post by Hyba »

Soso4ek228 wrote:
Fri Mar 12, 2021 11:09 am
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?
You would at least throw off this place of the code, how can we help you so much?

raxele123
Expert Cheater
Expert Cheater
Posts: 270
Joined: Sun Nov 29, 2020 6:35 pm
Reputation: 32

Re: League of Maidens Cheat Tutorial

Post by raxele123 »

susahnamanya wrote:
Fri Mar 12, 2021 6:44 am
raxele123 wrote:
Fri Mar 12, 2021 3:01 am
great 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.
I'm not your lord, lol. But okay, I'll grant you your wish.
Find ClaimNow in NewUI_MidBoss. Scroll down to line 249, you will see:

Code: Select all

list.Add(GlobalVar.MidBossRewardID0[num]);
Change it to:

Code: Select all

for (int drop = GlobalVar.MidBossRewardDropChance.Length - 1; drop >= 0; drop--)
{
	list.Add(GlobalVar.MidBossRewardID0[drop]);
}
You can do the same for other bosses below it. Just change the MidBossRewardID# from script above.

100%? Why need to change to 100%? Now you don't need to change it anymore, all will be given to you. :wink:
HOLY SHIT YOU FIGURED IT OUT!
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.

susahnamanya
Novice Cheater
Novice Cheater
Posts: 16
Joined: Tue Aug 21, 2018 8:01 pm
Reputation: 6

Re: League of Maidens Cheat Tutorial

Post by susahnamanya »

raxele123 wrote:
Fri Mar 12, 2021 3:46 pm
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.
I see, lol. I haven't tried doing it more than once.

ALONCE
Noobzor
Noobzor
Posts: 10
Joined: Sat Mar 06, 2021 6:34 am
Reputation: 1

Re: League of Maidens Cheat Tutorial

Post by ALONCE »

Is there a way to get unlimited stamina?

raxele123
Expert Cheater
Expert Cheater
Posts: 270
Joined: Sun Nov 29, 2020 6:35 pm
Reputation: 32

Re: League of Maidens Cheat Tutorial

Post by raxele123 »

ALONCE wrote:
Fri Mar 12, 2021 11:30 pm
Is there a way to get unlimited stamina?
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.

ALONCE
Noobzor
Noobzor
Posts: 10
Joined: Sat Mar 06, 2021 6:34 am
Reputation: 1

Re: League of Maidens Cheat Tutorial

Post by ALONCE »

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

susahnamanya
Novice Cheater
Novice Cheater
Posts: 16
Joined: Tue Aug 21, 2018 8:01 pm
Reputation: 6

Re: League of Maidens Cheat Tutorial

Post by susahnamanya »

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;
	}
}

raxele123
Expert Cheater
Expert Cheater
Posts: 270
Joined: Sun Nov 29, 2020 6:35 pm
Reputation: 32

Re: League of Maidens Cheat Tutorial

Post by raxele123 »

susahnamanya wrote:
Sat Mar 13, 2021 4:17 am
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;
	}
}
sorry milord, there are a LOT of things under "newplayercontrol"

susahnamanya
Novice Cheater
Novice Cheater
Posts: 16
Joined: Tue Aug 21, 2018 8:01 pm
Reputation: 6

Re: League of Maidens Cheat Tutorial

Post by susahnamanya »

raxele123 wrote:
Sat Mar 13, 2021 4:52 am
sorry milord, there are a LOT of things under "newplayercontrol"
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.

ALONCE
Noobzor
Noobzor
Posts: 10
Joined: Sat Mar 06, 2021 6:34 am
Reputation: 1

Re: League of Maidens Cheat Tutorial

Post by ALONCE »

raxele123 wrote:
Sat Mar 13, 2021 4:52 am
susahnamanya wrote:
Sat Mar 13, 2021 4:17 am
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;
	}
}
sorry milord, there are a LOT of things under "newplayercontrol"
This works flawlessly, thank you so much!

RaresShaq
What is cheating?
What is cheating?
Posts: 2
Joined: Sat Mar 13, 2021 4:18 pm
Reputation: 0

Re: League of Maidens Cheat Tutorial

Post by RaresShaq »

Could i change the size of my character or to boost the Size matters skill, or unlock size matters code?

RoyalSombra
Noobzor
Noobzor
Posts: 12
Joined: Sat Mar 13, 2021 7:28 pm
Reputation: 0

Re: League of Maidens Cheat Tutorial

Post by RoyalSombra »

So is there a way to get more gold with this

DemaShinku
What is cheating?
What is cheating?
Posts: 3
Joined: Tue Mar 09, 2021 2:14 pm
Reputation: 0

Re: League of Maidens Cheat Tutorial

Post by DemaShinku »

:o
Last edited by DemaShinku on Sat Mar 13, 2021 9:41 pm, edited 2 times in total.

Post Reply

Who is online

Users browsing this forum: No registered users