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

Bob423

Content Manager
  • Content Count

    1,952
  • Joined

  • Last visited

  • Days Won

    27

Everything posted by Bob423

  1. chat gets really lonely sometimes

    1. ShinGamix

      ShinGamix

      Chat bomb the forum then.

  2. wow, didn't know the difference was that big.
  3. anyone want to motivate me to work on a bunch of puzzles that are really similar to ones i've already done?

  4. i'm back! didn't have my computer for a few days :(

  5. fine, i'll give another reason. hm...well he's also been helpful and nice.
  6. ShinGamix for activity i guess
  7. it's a giant mushroom...MAYBE IT'S FRIENDLY!

    1. ShinGamix

      ShinGamix

      >Insert penis joke here<

  8. i think i just might use this for my sequel. a cave where you can't see anything unless you get a flashlight type item or skill. like in pokemon :D (just realized that i was typing it lol) can't do it in my current game, because blizz abs is too delicate, so i'm afraid it won't work the way i want it to. plus having enemies you can't see would be a pain.
  9. they replace people all the time apparently. i've never seen the show, but when i think about the doctor, david tennant comes to mind. and then i, being the nerd that am, think about how he's also barty crouch jr. in harry potter. >.<
  10. Just finished the order of the phoenix. Gonna get the half-blood prince from the school library tomorrow morning. they actually have all 7 harry potter books :)

    1. Polraudio

      Polraudio

      I watched all the books :P

    2. Broken Messiah

      Broken Messiah

      I read them all in middle school and now I can not remember anything of it...

  11. i like how my grim reaper boss turned out. he's the most boss-like boss so far. :D it's like a ghost, so it can pass through anything, and can't be cornered. and it has an attack that instantly kills 1 of your characters (the skill has a 400 frame delay on it, so it can't use it too much)

  12. i have no idea. I guess I could try. edit: i did it! :D just put it above main like all other scripts.
  13. that's hilarious! to answer A, he has to say C, and to answer C, he has to say A. that would confuse most people. it might be harder than it looks when you're under pressure though.
  14. so what i'm going to show you how to do, is this ignore the window sizes and arrangements. focus on the numbers that are green and red when you select equipment on this screen, it shows the stat changes right? but if you ever want to make it easier to see the difference in the stats, here's how you do it. first, you need to go to window_base, and find this def normal_color return Color.new(255, 255, 255, 255) end this should be number 64 or something. what it does, is, it tells the game what to do if the script says self.contents.font.color = normal_color which changes the color to the default white. this color can be changed by changing the 4 numbers that come after Color.new (255, 255, 255, 255) this means solid white. if any of these is less than 0, or greater than 255, then it won't work. each number represents something different. (Red, Green, Blue, brightness) 0 brightness will make anything black, but 255 brightness won't make it white. to make solid green text, you would set it to (0, 255, 0, 255) to make black text, you set it to all 0 if you combine Red and Green, you'll get yellow if you combine red and blue, you get purple. simple enough? if you're not sure how to make the color you want, you can try this http://www.colorpicker.com/ on there, from top to bottom(ignore the first 2) is Brightness, Red, Green, Blue. to add a new color, type def your_color_name_here return Color.new(R, G, B, B) end after all the other colors. once you've done that, go to Window_EquipLeft and find this line if @new_atk != nil self.contents.font.color = system_color self.contents.draw_text(160, 64, 40, 228, "->", 1) self.contents.font.color = normal_color what you need to do, is change the line that ends in normal_color delete it, add a comment above and below where it was if it helps (commented lines start with #) now, we need an if statement. this is like a conditional branch in eventing. if this is true, this happens, if not, this does. here's what i did if @new_atk > @actor.atk then self.contents.font.color = stat_up_color elsif @new_atk < @actor.atk then self.contents.font.color = stat_down_color elsif @new_atk == @actor.atk then self.contents.font.color = normal_color end that means: if the actor's atk, after equiping this item will be greater than it is now, then change the color to the stat up color if the actor's atk, after equping this item will be less than it is now, then change the color to the stat down color if the actor's atk, after equping this item will be equal to what it is now, then change the color to the normal color end if statement replace all the lines between 31 and 43 that say "self.contents.font.color = normal_color" with the above code (or similar), but replace the atk with the name of the sat. e.g if it says "if @new_pdef != nil " change the atk to pdef (defense stat) does that make sense?
  15. so i was sitting in bed thinking...hm.. what if i made it so that, when someone is changing their equipment, the numbers changed color depending on whether or not it was a stat increase, like in Final Fantasy, and stuff? and then, i got my laptop, already having a plan for how i would set that up. and then i did it. it was so easy! so glad i started learning RGSS.

    1. Bob423

      Bob423

      myself. pol helped me get started

    2. forcebreaker

      forcebreaker

      Coooouuuuld...."You"...help "me" get started? :D ....I shall like to be a scripter as well!!!

    3. Bob423

      Bob423

      hm...maybe... to chat!

    4. Show next comments  189 more
  16. it's now impossible to damage Axel during the last boss fight in the demo. He acts just like an ally that's unselectable.
  17. Level up! +8GB!

    1. Marked

      Marked

      Damn and I thought my 650GB was a lot :P I still haven't used that up after 18 months, but I guess my hobbies dont require much room :D (that includes streaming)

    2. Bob423

      Bob423

      too bad i'm stuck with 2GB of RAM :(

      no amount of external HDD of any kind can change that. my laptop is as good as it will ever be

    3. madanchi

      madanchi

      8gb ram and 3tb hdd for me. I know with 64bit you can have an insane amount of ram, a few petabytes or something, it's just current hardware can't handle that high.

    4. Show next comments  189 more
  18. well my g key is broken. i wish there was an easy way to replace the hinges

    1. Bob423

      Bob423

      well there's always my usb keyboard

    2. Marked

      Marked

      you just need to copy the g from gdunlimited.net in your browser so its always in ur clipboard :D

  19. that is REALLY weird. neither of those should be needed. I don't get it. but i'll add images with those names in anyway. although usually it says .png or something afterwards... edit: wait...have you been pressing space to continue the dialog? i think what's happening is, when the player graphic is changed, you try to attack (but not meaning to) with space, so it wants an attack animation. there are two ways to fix this. one is to make a bunch of dummy files, the other is to disable the use of space as an "A button" and force the player to use enter only. try it again, but make sure you don't use space to progress through dialog. either way, I'm going to do the 2nd one just in case. edit: just re-uploaded it. space and enter no longer do the same thing. try it again.
  20. Bob423

    Movement

    turn on stop animation
  21. well unfortunately, the map is huge. but the path is simple, so it's not that bad. it's probably detailed enough for RMVX or something, but it's zoomed out pretty far, so it's hard to tell. there's also a lot of "flat lines" try to make these flat parts no more than 3 (preferably 2) it looks more realistic that way. unless you're going for a more pokemon-style look e.g i've circled the places that are too flat.
×
×
  • Create New...