Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - Daclopeda

1
RMXP Script Database / Re: [XP][VX] Show Event Name
August 03, 2011, 01:08:16 pm
Thanx^^ It's working now.
2
RMXP Script Database / Re: [XP][VX] Show Event Name
July 30, 2011, 12:58:59 pm
I get this error when I'm starting the game

Quotescript''line 246: NoMethodError occured.
undefined method `rpgvx?`for nil:NilClass
3
 :D Ah, it worked!
Thank you very much;)
4
Yes, I am:O
5
Hmm, I added it to the menu. But it only opens the first characters Skill Equip scene... I used:
   when 5 #Skillequip
           # Play decision SE
        $game_system.se_play($data_system.decision_se)
        # Switch to Skill Equip
        $scene = Scene_SkillEquip.new


And it opens the character with the first ID's skillequip.

if I use this:

   when 5 #Skillequip
           # Play decision SE
        $game_system.se_play($data_system.decision_se)
        # Switch to Skill Equip
        $scene = Scene_SkillEquip.new(@status_window.index)

I get an error.

I want to be able to choose the character as in Status, Equip and so on. Is that possible with this script?

Thank you^^
6
Thanks :)
7
Is there a way to add this as a command in the menu. I mean so that I can call the scene from the menu?
I have  a lot of characters in my game and find it hard to find a way to call the skill equip scene for a certain character without using a lot of conditional branches and events...

(I hope you understand what I mean, my english isn't very good after all...)