-
Content Count
71 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Blogs
Downloads
Calendar
Gallery
Everything posted by Spence607
-
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?
-
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
-
Need help making HP and SP bars in battle.
Spence607 replied to Spence607's topic in General Game Development
#-------------------------------------------------------------------------- # * 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. -
Need help making HP and SP bars in battle.
Spence607 replied to Spence607's topic in General Game Development
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. -
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
-
I see, thanks for the help.
-
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.
-
Hilarious Windows Errors
Spence607 replied to EmilyAnnCoons's topic in Computers, Internet and Tech Talk
Lol, awesome find man. -
Mozilla Firefox - the better browser
Spence607 replied to EmilyAnnCoons's topic in Computers, Internet and Tech Talk
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. -
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.
-
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.
-
I see, thanks for the help, and Wing Ayalamon I'll try out your method as well.
-
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?
-
Perfect, just what I wanted, thanks a lot man.
-
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.
-
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.
-
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.
-
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. :(
-
Thanks for the information, but it made no difference. See for yourself.
-
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.