Jump to content


KygonsCube

Member Since 02 Feb 2008
Offline Last Active Aug 09 2012 06:31 PM

Posts I've Made

In Topic: EXP and MP Bars

05 August 2012 - 09:32 PM

when the playermp goes down the bar stays the same. shouldn't it be in step?


No, all drawing functions should be in the draw event.
Make sure the rest of your code is working properly and that variable is receiving change.

The draw event is much like the step event except it takes place after the step events and allows drawing functions to work, drawing functions ONLY work in this event, although if you choose not to use this event the object's sprite is still drawn.

If you want the object this is being drawn by to still be visible, include this in the draw event:
draw_sprite(sprite_index,image_index,x,y);

If your image scale, angle, opacity, or color is changed from the default value, use this instead:
draw_sprite_ext(sprite_index,image_index,x,y,image_xscale,image_yscale,image_angle,image_blend,image_alpha);

In Topic: Evil Waters Hiring GM Developers!

05 August 2012 - 08:00 AM

This post is in the wrong forum section, this belongs in Team Requests.

In Topic: EXP and MP Bars

05 August 2012 - 07:37 AM

Please don't create multiple posts for the same purpose.


You're going to want to add the 5 pixels to the second X coordinate, otherwise the bar would go backwards when mp depletes to numbers less than 5.

Also, I noticed you put view_Xview where the y coordinate is.

x1=view_xview+5
y1=view_yview+5
x2=view_xview+playermp+5
y2=view_yview+15

Your draw script would look like this.
draw_rectangle(view_xview+5,view_yview+5,view_xview+5+playermp,y+view_yview+15,false);

draw_rectangle(x1,y1,x2,y2,outline)

In Topic: Need Minish cap sprites

08 July 2012 - 12:38 AM

you can't just create from strip because the people who rip the sprites don't align the images correctly, you need a proper reference point for all of the images to put them together properly, that's why I wanted the shadow.


Okay, I see what you mean. Yeah, these sprites are ripped pretty badly not acknowledging such a crucial detail.
Unfortunately I can't help you with all the sprites but anyways, I recorded the up/down walk cycle, left and right don't seem to bob up and down so you won't need to adjust them. Hopefully this can be of some good use to you.
Minishcapwalkcycledownload

In Topic: Platform sprite and background needed!

03 July 2012 - 02:10 AM

Image description (More in depth than you've already described please)
Size in pixels (width and height)
Image format (JPG, BMP, PNG, GIF...)
Style (provide a link to a similar image with the style you want)
Whether the image needs to be animated

Please edit your post and contain at least the information marked in red, it's hard to fulfill requests when there's a lack of information. (I'm surprised nobody else has said this yet)