Jump to content
  • 0

How to make long name on online game? ( Stumble Guys )


CupuGS2

Question

6 answers to this question

Recommended Posts

On 7/20/2022 at 4:14 AM, CupuGS2 said:

Pls help, I only can change the name not the name limit

I understand that you want to increase the length of your player name because with just searching and editing your name the name changes but the length stay the same which is your priority i guess. If thats the case you can read the steps below, if not then you have to clarify more.

Note: Value that represents length of your player name is 4 bytes above the first character of your name.

Step 1:

Search your full player name, use UTF-16LE. Refine results using the value of the first character, add final result to saved list. Do offset -4 (data type -> byte).

The value you see, equals the amount of characters of your name represented in UTF-8. You need it later. For example if your nickname is suneater then the value on that offset will be 8. Edit the value to 0 and then tab on your player name, if the field is blank then its the right value. Use this refine technique to make sure you have the right value. Now from that address do offset of -0x8h if your using 32 bit apk, but do -0x10h if your using 64 bit apk. The addresses on those offset are values stored to somewhere in virtual memory. Use the pointer search feature on that address. You will get a few results. Save those results. You will need them later.

 

Step 2:

You can't properly edit your nickname because a lot of other irrelevant data below your player name. So you should use the allocate memory page feature in GG so that you can writhe out the name as long as you want without intervention of irrelevant data. 

When allocating memory page, enable -> May be written

Save the first address of the new allocated memory page. And do offset of 0x8h if your using 32 bit apk, but do 0x10h if your using 64 bit apk. On that offset you put the value that represent the total amount of characters your new player name will have, this is usually called string length.

Then 4 bytes from the address where you have the value that represent string length you will have the address where the first character of your player name will be. I dunno how familiar you are with UTF-16LE but one character takes up 2 bytes, so edit according to that. 

Your allocated memory page is ready to be used.

 

Step 3:

Copy the address of the first address of the allocated memory page(if all good you saved that address in the saved list)

Then edit those values you got from the pointer search in step 1 and replace them with the recently copied address. Make sure you put a "h" at the end of the value before pressing yes.

Now for each time your name reverts back to normal you can repeat step 1.

Other players can see your changed nickname.

IMG-20220724-WA0000.jpg

Screenshot_2022-07-24-19-45-53-673_com.kitkagames.fallbuddies.jpg

Link to comment
Share on other sites

On 7/27/2022 at 12:29 AM, Platonic said:

Try this script.

Type your desired player name and it should swap with current player name, regardless of length. Keep note that during a match there is a limit on the player name. But its bigger limit then the one in the menu.

Script does what was mentioned in previous comment.

com.kitkagames.fallbuddies.lua 6.33 kB · 37 downloads

It's not working 😫

Link to comment
Share on other sites

On 7/23/2022 at 10:54 AM, CupuGS2 said:

Change name limit from 12 to 20

Try this script.

Type your desired player name and it should swap with current player name, regardless of length. Keep note that during a match there is a limit on the player name. But its bigger limit then the one in the menu.

Script does what was mentioned in previous comment.

com.kitkagames.fallbuddies.lua

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.