Jump to content
New account registrations are disabed. This website is now an archive. Read more here.

Spence607

Member
  • Content Count

    71
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Spence607

  1. Very nice script for in-game messages. Will use, but still doesn't solve my problem. I mean I want all text bolded, like the main menu, status menu, and battle menu. Is it possible?
  2. Hey, just wondering if there is a way to make the game font bold or italic. I know how to change the font, I am currently using Arial font, but I want it bolded. Any help would be much appreciated. Thanks, Spence
  3. #-------------------------------------------------------------------------- # * Draw HP # actor : actor # x : draw spot x-coordinate # y : draw spot y-coordinate # width : draw spot width #-------------------------------------------------------------------------- def draw_actor_hp(actor, x, y, width = 144) # Draw "HP" text string self.contents.font.color = normal_color self.contents.draw_text(x, y, 34, 32, $data_system.words.hp) # Calculate if there is draw space for MaxHP if width - 32 >= 108 hp_x = x + width - 108 flag = true elsif width - 32 >= 48 hp_x = x + width - 48 flag = false end # Draw HP self.contents.font.color = actor.hp == 0 ? knockout_color : actor.hp <= actor.maxhp / 4 ? crisis_color : normal_color self.contents.draw_text(hp_x, y, 48, 32, actor.hp.to_s, 2) # Draw MaxHP if flag self.contents.font.color = normal_color self.contents.draw_text(hp_x + 48, y, 12, 32, "/", 1) self.contents.draw_text(hp_x + 60, y, 48, 32, actor.maxhp.to_s) end end What x value exactly? Never mind man, I figured it out. Thanks for all the help.
  4. Sorry man, I couldn't understand it. Ended up using Cogwheel's HP/SP/EXP Gauge Script. Just edited it a bit. Output: Thanks for the help anyways man. Although I do need help centering some text. I'd like to have the numbers in the middle of the bar, both in the menu and battles.
  5. I want to make a script to display HP and SP bars in battle. That actually decrease when HP or SP is lost and increase when HP or SP is gained. Here's what I basically want it to look like: I have no clue where to start, any help would be much appreciated. Note: This is not a script, the bars were added with GIMP. Thanks, Spence
  6. ZoneAlarm is nice, but I prefer COMODO. Also if your wanting protection and removal of viruses and spyware without having to pay. Check out free programs such as: Spybot Search & Destroy, SpywareBlaster, Ad-Aware 2008 Free Edition, and BitDefender Antivirus 10 Free Edition. Also the COMODO link is the free version. I use all, try them out. Been using them for years and I highly recommend.
  7. Firefox rules, no doubt the best web browser out there. Addons like Adblock Plus and NoScript are nice to have, the themes are rather sweet also. I use IE from time to time, but not very often.
  8. Hey, sorry for all the questions.. I have so many. This time I was just wondering how you would edit scripts to change the font color of anything really. I mainly want to know this for the HP and SP display in battle, I want to change the color of it. And for colors do I have to use a code like the six character codes used in html or can I simply use color names? Thanks.
  9. Spence607

    Scripts

    Alright, I recently figured out I can use the $scene command to display a class, so it's fine now.
  10. Spence607

    Scripts

    Hey, I was wondering if there was a way to call on a script without using the event script, because you can only enter 11 lines of code, and I need much more. This is for learning purposes, I'd like to actually see my output, so I know what I'm doing.
  11. I see, thanks for the help, and Wing Ayalamon I'll try out your method as well.
  12. I want to make it night-time on a few maps, I use the change screen color tone event to do so, but when I use it again on the same map or a different map to increase or decrease the tone it does not work. Is there a way to fix this, or any other way of making the screen darker?
  13. Spence607

    HP/SP Script Help

    Perfect, just what I wanted, thanks a lot man.
  14. Spence607

    HP/SP Script Help

    Hey, I was just wondering if someone could help me make a script to show max HP and SP in battle. Something like this: HP 1267/1500 SP 27/309 I would also like the numbers closer to HP and SP as shown, unlike the default. Any help would be much appreciated, since I know basically nothing of scripts.
  15. I see, thank you greatly. I had no idea you're supposed to use the one in the upper left corner, for I have been using random ones. It seems this was the source of the problem. Thank you all for the help.
  16. I'm using the forest town interior tileset. And Kiriashi I did exactly what you said I can still pass over all stools and all three middle vertical tiles of the table. Now since I changed things I can now pass over the bottom right tile of the table as well.
  17. I'm sorry, I must not understand because no matter what I do I can still pass over the middle tiles of the table and all stools. :(
  18. Thanks for the information, but it made no difference. See for yourself.
  19. With some tiles my character seems to always walk over them. Like the stool and the table for example in the Forest Town Interior. I've tried placing them on layers 2 and 3 and both, but no difference. Are these tiles always like this, or can this be fixed? Any information would be greatly appreciated, since this small matter is really pissing me off.
×
×
  • Create New...