RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
[REQUEST] Script to change button layout and to change first party member

0 Members and 1 Guest are viewing this topic.

**
Rep:
Level 88
I know you guys are about to say, "F1 while playing the game!", but this is different

You see, F1 doesn't give me the buttons I want. Basically, I wanted to change it around a bit

A=A
B=S
C=D
X=Enter (I THINK that's the menu pop up button)
Q=L
E=R

I haven't really used Y or Z, so I don't know what those do, but including those in the script would be great, as then they could be changed. Same with the directional keys (hey, might as well go all the way)

Also, is there a script anywhere that allows me to change the order of the party that can also work with Leon_Westbrooke's Party Changer script? Speaking of which, any way to make it so that the party changer script cannot allow you to swap characters of certain classes? After all, being able to swap an escort out of your party until you reach the goal, then swap them back in would defeat the purpose, would it not?

***
Rep:
Level 84
It's human to misdo
In Blizz-ABS, there is this kind of script.
You could just use that and disable all the other functions that comes with it.
Or if you can, or someone else can, cut out that part of Blizz-ABS.
« Last Edit: August 14, 2009, 10:15:56 AM by stripe103 »

***
Rep:
Level 89
I am yourself!
the concept is when you press a button (say it's SHIFT), the first party member will be the last and the second will be the first, the third will be the second, and the fourth will be the third.

the code is this, please tell me if it is not working:
Code: [Select]
class Scene_Map

  alias old_update update
  def update
    old_update
    if Input.trigger?(Input::SHIFT)
      temp = $game_party.actors[0]
      $game_party.actors.delete_at 0
      $game_party.actors.push temp
    end
  end

end
Symphony of Alderra : Memoirs of Life

Storyline : 200% (Overimaginatives)
Scripting : 100% (At last...)
Eventing  : 100%
Mapping   : 0.125%

********
Resource Artist
Rep:
Level 94
\\\\\
Project of the Month winner for June 2009
XP and VX buttons are basically set up for an SNES controller. X and Y are basically more buttons you could use if you wanted to. For like custom event systems or something.