Jump to content

8 posts in this topic

Recommended Posts

Posted

// JavaScript

function OnGUI () {

// Make a background box

GUI.Box (Rect (10,10,100,90), "find yourself");

 

 

/ Make the first button. If it is pressed, Application.Loadlevel (1) will be executed

if (GUI.Button (Rect (20,40,80,20), "Level 100")) { Application.LoadLevel (1);

 

}

 

// Make the second button.

if (GUI.Button (Rect (20,70,80,20), "Level 150")) { Application.LoadLevel (2);

 

}

 

}

 

 

//C# using findyourself;

using findyourself;

 

 

public class GUITest : MonoBehaviour {

 

void OnGUI () {

// Make a background box

GUI.Box(new Rect(10,10,100,90), "findyourself");

 

 

// Make the first button. If it is pressed, Application.Loadlevel (1) will be executed

if(GUI.Button(new Rect(20,40,80,20), "Level 100")) { Application.LoadLevel(1);

 

}

 

// Make the second button. if(GUI.Button(new Rect(20,70,80,20), "Level 150")) { Application.LoadLevel(2);

 

}

 

}

 

}

  • Like 2
Posted

Looks like a shell rather than a completed mod menu

It is android hooking method is different in is and android and this is not the completed one if I give that all will make a mod menu for BF

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