Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Help with a Scene Equip
#1
Bug 
Hi! I'm making a Scene Equip adding some features, but there's one thing I do not know how to make.

First of all, an image, explains better than words:

[Image: 72qf.png]

so as you see there's a Dummy between the equipped items. It is actually made of 5 different images, boots, armor, head, left and right hand. What I would like is that, depending on the cursor index, one of the images glow, so if you're in index 0, weapons, the right hand glows, index 2, armor, the armor glows, etc.

Any thoughts?

Thanks before hand!
I'm looking for a scripter to help me with my proyect. Need some minor adjustments-modifications and some larger codes. The larger ones will be remunerated :) Thanks beforehand.
Reply }
#2
Photo 
just like mine?


[Image: equipba.png]
Reply }
#3
Hey, Iqus. What you are looking for is a type of paperdoll system. For characterset sprites, the most known ones would be known as Visual Equipment (both Me™ and Rataime). Or for battlers, it would be my Brenda's Visual Battlers. We have these in the Scripts Database forum.

Both of these require a lotta graphics, such as swords, spears, helmets, etc... along WITH your characters. This could be graphic intensive. But if you make the characters the same basic shape and with the same poses, you could make a sword work for all your characters (no needing separate swords per guy).

This could inspire you to have visual equipment for your guys on the map and in the battlesystem. You would need to use visual equipment and visual battlers. But if you want to have that AND something for your equipment system (and thus your STATUS WINDOW TOO DUDE!!!), you'll be wishing to have one more.... one I would thus 'label' as a visual portrait. Easiest way to attain that would be to take a copy of Brenda's Visual Battlers and tweak it to have different module names and stuff. Winking

Oh, you can find that these features do have demos available.

Wait.. is this for RMXP, VX or VXAce? You didn't specify.

Hey, i666iky939. You using a multiple slots script to do that? Hehehe... So am I. Laughing + Tongue sticking out
Up is down, left is right and sideways is straight ahead. - Cord "Circle of Iron", 1978 (written by Bruce Lee and James Coburn... really...)
[Image: QrnbKlx.jpg]
[Image: sGz1ErF.png] [Image: liM4ikn.png] [Image: fdzKgZA.png] [Image: sj0H81z.png]
[Image: QL7oRau.png] [Image: uSqjY09.png] [Image: GAA3qE9.png] [Image: 2Hmnx1G.png] [Image: BwtNdKw.png%5B]
Above are clickable links

Reply }
#4
You'd have to cut the dummy image into five parts, and use the flash method in the Sprite class to flash them. And don't forget to call the Sprites' update method so the flash will update.
Reply }
#5
Hmmm I think I didn't explain myself so well because MechanicalPen seems to be the only one who understood what I was asking D:

@i666iky939: nice pic but I think that has nothing to do with what I want to acomplish :/

@DerVVulfman: I don't really understand what that is about, some kind of 'show the equipment in the character' script? Sorry, I did not undestand ^^u PD: The request is for RPGMaker XP

@MechanicalPen: Yeah, the image has been splitted so, how can I use that flash method?

Thanks to all and sorry for the inconvenience!
I'm looking for a scripter to help me with my proyect. Need some minor adjustments-modifications and some larger codes. The larger ones will be remunerated :) Thanks beforehand.
Reply }
#6
in Scene_Item.update you'll need to check the index of the slot selected, and then call your_sprite.flash(Color.new(0,0,0), 12) and don't forget to call your_sprite.update in Scene_Item.update as well.
Reply }
#7
(01-18-2014, 05:46 PM)MechanicalPen Wrote: in Scene_Item.update you'll need to check the index of the slot selected, and then call your_sprite.flash(Color.new(0,0,0), 12) and don't forget to call your_sprite.update in Scene_Item.update as well.
In Scene_Item? Or in Scene_Equip?

Edit:

I went to update_right in Scene_Equip and called the Sprite.new defined as lefthand and then tryied to make it flash, however, it says that 'flash' is an undefined method :/

In Window_EquipRight

@lefthand = Sprite.new
@lefthand.bitmap = RPG::Cache.picture("left")
@lefthand.x = 0
@lefthand.y = 158

In Scene_Equip

def update_right
# FLASHING
if @right_window.index == 0
@lefthand.flash(Color.new(0,0,0), 12)
end
I'm looking for a scripter to help me with my proyect. Need some minor adjustments-modifications and some larger codes. The larger ones will be remunerated :) Thanks beforehand.
Reply }
#8
It IS possible the help files are lying to me, because a flash effect is claimed to exist but it is never used in the default scripts.

Instead you can do something like
Code:
@lefthand.color( Color.new(0,0,0,X) )
and have X (the alpha value) be a variable that increases (or decreases, I don't remember which one you want) every frame.
Reply }


Possibly Related Threads…
Thread Author Replies Views Last Post
   using $scene during battles Keeroh 5 7,572 01-17-2018, 04:31 PM
Last Post: Keeroh
Sad  Equip bug (1-scene CMS) Whisper 2 4,581 01-23-2017, 09:20 AM
Last Post: Whisper
   A fourth column in MOG Scene Item Laura V1.2 Noctis 13 17,068 11-27-2016, 05:12 PM
Last Post: DerVVulfman
   Using animations in a scene (unrelated to battles and maps) PK8 4 7,947 11-17-2009, 10:54 AM
Last Post: PK8
   Timing problem with damage shown on the screen - Scene Battle mageone 2 5,663 10-20-2009, 06:22 PM
Last Post: mageone
   [Resolved] Equipment Scene Problem Yin 4 6,440 08-29-2009, 11:01 PM
Last Post: Yin



Users browsing this thread: