Jump to content

H5GG Menu with ARM64 Instruction and Unity Support (work on non-jailbroken)


1,947 posts in this topic

Recommended Posts

Posted

Version 1.9.0: 
1. Introducing Position to UnityObject for JSPlug-in. YES, you can now get and update position (if available) of any Unity User Object.  
    If you still don't get how crazy this improvement is, let's imagine you could
    - Teleport or any where on the map
    - Summon any items on map to you (You do not need to go and collect them)
    - Summon any monsters / bosses to you (All monsters come to you and die, provide exp for you to level up)

Teleport/Summon becomes so easy to implement with JSPlug-in. Sample below:

Spoiler
script = initializeUnitySupport();
//Locate Hero
var aryObj = script.call("findUnityObjectOfType", ["$Hero", true]);
var Hero = new UnityObject(aryObj[0]);
var HeroPos = Hero.position

//Sumomon Monsters				
var aryObj = script.call("findUnityObjectOfType", ["$Monster", true]);
for (let i=0;i<aryObj.length;i++){
	var Monster = new UnityObject(aryObj[i]);
	Monster.position = HeroPos
}
//Sumomon Drops (exp, items)				
var aryObj = script.call("findUnityObjectOfType", ["$MapResidue", true]);
for (let i=0;i<aryObj.length;i++){
	var MapResidue = new UnityObject(aryObj[i]);
	MapResidue.position = HeroPos
}
POINT TO NOTE:

1. You cannot move a non-root object. (not those sub-components)
2. It only works on games didn't have position protection. (pull you back to you original location)
3. It might or might not work with online game with other players. Test it yourself. (remember to de-link with other player), Frankly, I DON'T suggest you to use it with online game. It is super unfair and annoying. You are simply inviting BAN. So, DON'T DO IT

2. Minor bug fix on a number of bugs.
note:
1. This is a ALPHA release and for Unity Game only. It is good for Hack developer who want to test their limits only. Not for general user who do not
familiar with Unity. For general user who do not familiar with Unity, it is still a good tool to use, but you cannot maximise its value.
2. Performance could be bad, if the game has a lot class definition. It is tradeoff for features and performance for now. If you don't like it, you may skip these in your JS plugin. It won’t affect your performance if you are not using it.

Download Link: https://iosddl.net/f8680cc43c210c0a/H5GG_with_ARM_and_Unity_v1.9.0.zip

Posted (edited)
1 hour ago, Menor939 said:

How to download 

Look for the download link, it is near bottom of the post.

Updated by Happy Secret

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines