Main Menu

Requesting for a custom CMS - Party Management / Item bank script

Started by mumerus, April 02, 2007, 02:41:26 AM

0 Members and 1 Guest are viewing this topic.

mumerus

Ok, here is how I want to change it, first I want to remove the "Save", since I will just set up some saving points in the game. Then I want to add some Sub menu in the item, "Items" which obviously have usable items like potions and recovery items, "Mixture" for mixing items or items used in battles that need to make skills work, and "Keys" which is for key items. And a menu for managing a party, "Switch" which change the party members which you can manage the party.. and when the battle start, you can switch party member.. and thats it.

And one last thing, a item bank script, Im planing to have many items, which have many uses. Only bank items and Mixture.

Sorry if Im asking so much, but Please, help me with this.. Thanks!


Rune

You can find a Party Changing System here
http://rmrk.net/index.php/topic,7200.0.html
To remove save or change it to a different command...
Find these lines...

    s1 = $data_system.words.item
    s2 = $data_system.words.skill
    s3 = $data_system.words.equip
    s4 = "Status"
    s5 = "Save"
    s6 = "Exit"

Change Save to whatever you like or just remove that option completely...
make sure to change the options under this to (if they are s6 then change them to s5... or s7 to s6 etc)IF you have taken out the option completely

Then find this line segment underneath those lines...
[s1, s2, s3, s4, s5, s6]

If you have removed the option then change this to
[s1, s2, s3, s4, s5]

Find...

      when 4  # ???
        # ????????
        if $game_system.save_disabled
          # ??? SE ???
          $game_system.se_play($data_system.buzzer_se)
          return
        end
        # ?? SE ???
        $game_system.se_play($data_system.decision_se)
        # ??????????
        $scene = Scene_Save.new

If you have taken out Save then delete these lines and change
      when 5
to
      when 4

if not then change it to
        $game_system.se_play($data_system.decision_se)
        $scene = !!!!!!!!!.new

Where !!!!!!!!! is the name of the script you want to call

As for everything else i'm completely clueless... sorry

I hope this helps ;)
Sincerely,
Your conscience.

mumerus

I got some questions, can you open it on the main menu? and can it hold around 30 people? and how can you change the size? I just want to put the face.

Sorry and thanks!

Rune

It can hold 9 reserve party members plus your whole main party, possibly more... i'm not sure, i'l have to check.
To call it from the menu... first call the script Scene_PartySwitcher (it doesn't work otherwise for some reason) and follow the steps i mentioned earlier
By the way... those lines are all found in Scene_Menu
There is an option after the instructions in the script that lets you choose whether to use sprites or faces... set it to true to display the faces... if you resize the faces to around 80 x 80 pixels (possibly 92 x 92) they'll fit... you don't need to resize the window
There is also an option after the instructions to set your max party size and it works past 4

Again... I hope this helps

[EDIT]
Yes, it works with 30 characters

Plus... remember when you call a script to disable a party member (all instructions on how to do this are in the script)... it doesn't like any party members after the number 7 so instead of "008" you'd just type "8" and instead of "025" you'd just type "25" etc... but with members from "001" to "007" it really doesn't matter... i think...

(Why do I babble on about nothing?)
Sincerely,
Your conscience.

mumerus

Nono, everything that the person says about these things I take it serious, every small details matter to me. Thanks!

All that left is item bank and CMS ;/

Rune

Sincerely,
Your conscience.

mumerus

Thanks, All thats left is a CMS!

Btw, How can I change change the amount of item like 250 different kinds of item instead of all the items adding up to 250, so theres more room and things to bank.

Rune

Sincerely,
Your conscience.

mumerus

Oh well.. how can I extend the maxium amount then?

BTW: Should I post up a mock off or get 25 post first.? >.<;

Rune

Hmm you might have to tamper with the script for that matey...
As for the CMS, you might want to use Blizzard's Stormtronics CMS... that has the item menu you're looking for...but it doesn't have the 'mixture' ability... it has sort, but not 'mixture'...also i'm not sure how to add and remove commands for that CMS... sorry...

Also... I almost forgot >.<
After changing or removing the save option... find this line in Scene_Menu
    if $game_system.save_disabled
      # ?????????
      @command_window.disable_item(4)
    end

Remove those lines or change the 4 to a 0
Sincerely,
Your conscience.

mumerus

Actually, for mixture, is not for mixing, it have another seperate list of items that can be mixed (If you talk to the NPC for that) and items used in battle.

Rune

Sincerely,
Your conscience.

mumerus


Rune

Well... beyond a slight bit of editing... i'm useless at scripting... sorry, I can't help you there
Sincerely,
Your conscience.

mumerus

Its ok, you actually been a serious help to me, I got the bank system working on my game now.
A friend of a friend is making the CMS for me, so everything it actually going seriously well.

Thanks alot for all your help Rune!

Rune

You're welcome ;) i'm only alive in the world so I can help... that's a pretty strange purpose...
Sincerely,
Your conscience.