Maruno
Lead Dev of Pokémon Essentials
- 5,286
- Posts
- 16
- Years
- Seen May 3, 2024
Use [CODE]...[/CODE] for when you want to show some code, not a quote box. The code box starts scrolling if it gets too long, whereas the quote box doesn't (and takes up a lot of room).please help me
i have this pokegear script eddited but i want to set the keys different that when i press left or right the cursor moves over the screen and not with up and down please help me
i have already tryed to change the (inputt:up) and (input::down) into right and left but then only the image moves on that so please help me
The PokéGear screen is little more than a command list (like the pause menu or the "summary/switch/item/cancel" menu in the party screen) with a few graphics that change depending on which option you've highlighted. The command list itself is placed just offscreen so you can't see it.
Command lists work by scrolling up and down. It doesn't support left/right. You'll need to create a new way to record which option you're highlighting. Fortunately you could probably get away with a simple "index-inna-variable" thing rather than faffing around with making a new 2D command array (which is complicated), but unfortunately you probably won't know how to do even that.
Your options are to: A) learn a bit of scripting and go for the "index-inna-variable" thing, or B) redesign your PokéGear so you only need to use up and down.