[RESOLVED] Menu for reaching for the sky beyond

Started by Spoofus, February 03, 2008, 10:52:28 pm

Previous topic - Next topic

Spoofus

well hey you are going out of your way to help me out with nice excellent fast results which is good the least i can unless you can think of other ways of me helping you out.


My Blog site I am working on: http://spoofus.weebly.com/

Nortos

I'm having trouble with bars with the status as it seems like to small an area to fit it in the width 3 actors I'm not sure what I'll do maybe could I push the money and time up so they're above the actors? anyway I can't do any more now i got Tai Kwon Do I'll do some tommorow night

Spoofus

thats cool do what you need too..and noice you do tai kwon do...i did shaolin and muyo thai


My Blog site I am working on: http://spoofus.weebly.com/

Fantasist

Nortos, you're getting quite good, keep it up :D

Spoofus, I promise yet again that I WILL get the PSOCMS done!
Do you like ambient/electronic music? Then you should promote a talented artist! Help out here. (I'm serious. Just listen to his work at least!)


The best of freeware reviews: Gizmo's Freeware Reviews




Nortos

I finished it and sent you the download here's an image enjoy :)

Spoofus



My Blog site I am working on: http://spoofus.weebly.com/

Nortos


Nortos

k here's new version I put icons on left of text and fixed up that cursor also fixed the status select ect and it's on the x axis here's a pic and I sent you the download


Blizzard

Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

Spoofus

eh doesnt bother me to much lol im happy as it is cause im a simply person lol


My Blog site I am working on: http://spoofus.weebly.com/

Nortos

February 06, 2008, 04:44:47 pm #30 Last Edit: February 06, 2008, 04:49:12 pm by Nortos
it's seph stupid bars I tried with yours Blizz and looked good :) but using sephs bars for the enemy health bars in his cbs, here's what it's like with blizzys bars :P


Spoofus



My Blog site I am working on: http://spoofus.weebly.com/

Nortos

if you want I could try and shorten Sephs bars or maybe Blizz could just make an enemy health bar script with his bars :P *hopeful*

Spoofus

*prays to Blizz for enemy health bar script* lol
the only bar that is off really is the exp the hp and sp ones are fine
but eh, I'm not to concerned about it now im just happy that the menu and battle system works very good


My Blog site I am working on: http://spoofus.weebly.com/

Blizzard

Just change the call of the method draw_actor_exp(ACTOR, X, Y, W). It's pretty easy, increase the X value and add the W value. Set it to the same as the HP drawing method.
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

Spoofus

lol i just tried my hand at it but it gives me a syntax error
here is the code that is not altered.. ??? confuses me but hey i tried my hand at it

Spoiler: ShowHide
alias raz_bars_base_exp draw_actor_exp  
  def draw_actor_exp(actor, x, y)
    if actor.level == 99
      draw_slant_bar(x, y + 18, 1, 1, 190, 6, bar_color = Color.new(0, 100, 0, 255), end_color = Color.new(0, 255, 0, 255))
    else
      draw_slant_bar(x, y + 18, actor.now_exp, actor.next_exp, 190, 6, bar_color = Color.new(0, 100, 0, 255), end_color = Color.new(255, 255, 255, 255))
    end
    raz_bars_base_exp(actor, x, y)
  end


My Blog site I am working on: http://spoofus.weebly.com/

Blizzard

I suggest that you use my bar code in this case.
Check out Daygames and our games:

King of Booze 2      King of Booze: Never Ever
Drinking Game for Android      Never have I ever for Android
Drinking Game for iOS      Never have I ever for iOS


Quote from: winkioI do not speak to bricks, either as individuals or in wall form.

Quote from: Barney StinsonWhen I get sad, I stop being sad and be awesome instead. True story.

Spoofus

February 06, 2008, 05:41:58 pm #37 Last Edit: February 06, 2008, 05:56:27 pm by Spoofus
yeah..i'll see what i can do :)

edit:
well i tried to copy the code you had in tons to see if it would work but it makes the
exp disappear lol i got a pic to prove it hehehe..but hey you cant learn with out failing first right?
Spoiler: ShowHide


My Blog site I am working on: http://spoofus.weebly.com/

Nortos

February 10, 2008, 03:29:43 am #38 Last Edit: February 10, 2008, 04:21:00 am by Nortos
I'll try and have a look at it and wow that looks good with the windowskin and the vx style
EDIT:
Ok it was easy go to line 115 of Sephs health ect bars and change the draw exp stuff to this

  
alias raz_bars_base_exp draw_actor_exp 
  def draw_actor_exp(actor, x, y, width = 144)
    if actor.level == 99
      draw_slant_bar(x, y + 18, 1, 1, 144, 6, bar_color = Color.new(0, 100, 0, 255), end_color = Color.new(0, 255, 0, 255))
    else
      draw_slant_bar(x, y + 18, actor.now_exp, actor.next_exp, 144, 6, bar_color = Color.new(0, 100, 0, 255), end_color = Color.new(255, 255, 255, 255))
    end
    raz_bars_base_exp(actor, x, y)
  end


also in the menu you'll want to change the .x's of menu status go to line 141 of menu I made for you and change the menu status of exp ect to this

      draw_actor_exp(actor, x + 60, y + 30)
      draw_actor_hp(actor, x + 60, y-10)
      draw_actor_sp(actor, x + 60, y+10)

Sally