Post: Help me edit this
01-26-2011, 09:31 PM #1
KhaoZ123
Pokemon Trainer
(adsbygoogle = window.adsbygoogle || []).push({}); Could you tell me how to edit the part of the patch were when your in the game and it says "Press up to open menu, and made by ~~~~"




FOR EXAMPLE
[ame]https://www.youtube.com/watch?v=7G-_9gLmzvI[/ame]

Pause at 0.30 that.(In the blue text)
(adsbygoogle = window.adsbygoogle || []).push({});
01-26-2011, 10:22 PM #2
XtreJD
Haxor!
Originally posted by KhaoZ123 View Post
Could you tell me how to edit the part of the patch were when your in the game and it says "Press up to open menu, and made by ~~~~"




FOR EXAMPLE
You must login or register to view this content.

Pause at 0.30 that.(In the blue text)


... really?

Thats really simple. But I'm bored so here:

It'll be under OnPlayerSpawned() or a function called from there, for example Verified().

somewhere in there will be the following:
    
self iPrintln("Press up to open menu, made by ~~~~");

here you can edit its color or whatever you want to do:

so for example you want it blue like in the video and your name red:
    
self iPrintln("^4Press up to open menu, made by ^1~~~~");

colors are the following:
    
^0 Black
^1 Red
^2 Green
^3 Yellow
^4 Blue
^5 Cyan
^6 Pink
^7 White
^8 Grey or Default Map Color


Then you can also instead of saying "up" you can show a picture of the button:
    
self iPrintln("^4Press [{+actionslot 1}] to open menu, made by ^1~~~~");

dpad up= [{+actionslot 1}]

if you want multiple lines you just add another self iPrintln("WHATEVER");
For example you want the first part on one and the made by following:

    
self iPrintln("^4Press [{+actionslot 1}] to open menu");
self iPrintln("^4Made by ^1~~~~");


You can also have variable display there as well:
for example adding a hosted by line:

    
self iPrintln("^4Press [{+actionslot 1}] to open menu");
self iPrintln("^4Made by ^1~~~~");
self iPrintln("^4Hosted by ^1"+level.hostis);


Lastly you can add another string after displaying the variable by adding another + sign. For example adding a bunch of exclamation points after the Hosts name in black color.

    
self iPrintln("^4Press [{+actionslot 1}] to open menu");
self iPrintln("^4Made by ^1~~~~");
self iPrintln("^4Hosted by ^1"+level.hostis+"^0!!!!");


Which Finally it'll show something like this:

Press [Smile^] to open menu
Made by ~~~~
Hosted by KhaoZ123!!!!


Except [Smile^] would display the picture of a dpad with the up arrow button and not this smiley lol.

Can't get more detailed than this.

The following user thanked XtreJD for this useful post:

KhaoZ123
01-26-2011, 10:30 PM #3
KhaoZ123
Pokemon Trainer
Originally posted by XtreJD View Post


... really?

Thats really simple. But I'm bored so here:

It'll be under OnPlayerSpawned() or a function called from there, for example Verified().

somewhere in there will be the following:
    
self iPrintln("Press up to open menu, made by ~~~~");

here you can edit its color or whatever you want to do:

so for example you want it blue like in the video and your name red:
    
self iPrintln("^4Press up to open menu, made by ^1~~~~");

colors are the following:
    
^0 Black
^1 Red
^2 Green
^3 Yellow
^4 Blue
^5 Cyan
^6 Pink
^7 White
^8 Grey or Default Map Color


Then you can also instead of saying "up" you can show a picture of the button:
    
self iPrintln("^4Press [{+actionslot 1}] to open menu, made by ^1~~~~");

dpad up= [{+actionslot 1}]

if you want multiple lines you just add another self iPrintln("WHATEVER");
For example you want the first part on one and the made by following:

    
self iPrintln("^4Press [{+actionslot 1}] to open menu");
self iPrintln("^4Made by ^1~~~~");


You can also have variable display there as well:
for example adding a hosted by line:

    
self iPrintln("^4Press [{+actionslot 1}] to open menu");
self iPrintln("^4Made by ^1~~~~");
self iPrintln("^4Hosted by ^1"+level.hostis);


Lastly you can add another string after displaying the variable by adding another + sign. For example adding a bunch of exclamation points after the Hosts name in black color.

    
self iPrintln("^4Press [{+actionslot 1}] to open menu");
self iPrintln("^4Made by ^1~~~~");
self iPrintln("^4Hosted by ^1"+level.hostis+"^0!!!!");


Which Finally it'll show something like this:

Press [Smile^] to open menu
Made by ~~~~
Hosted by KhaoZ123!!!!


Except [Smile^] would display the picture of a dpad with the up arrow button and not this smiley lol.

Can't get more detailed than this.


Thanks Man, Im new to coding lol

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo