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

kellessdee

Member
  • Content Count

    1,023
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by kellessdee

  1. Hey now, this implies marked doesn't do any work. Job, university, administrator, developing new site, etc. This topic would be all about marked if it wasn't against the rules to nominate him :shifty:
  2. HA I COULDN'T WAIT BUT NAO YOU HAVE 101 bad joke alert
  3. So kiriashi, what are you going to give me? I think you deserve that +1, but since you are requesting this reppie what do I get in return >:|
  4. Yes that is normal. The higher the index of the picture used, the closer to the player it will appear. picture 9, will always be above pictures 1-8. As for the editor, there is (as far as I know) unfortunately no way of making them larger :/ For the filenames, I would suggest using shorter names; say with short forms of the name you want. (ex. win instead of window, as long as it is something you will remember, it should be fine.) As for the conditional branches, there isn't much I can suggest, as because (unfortunately) evented conditional branches do not support logical operators like and/or, etc. So it is really hard to simplify logic to reduce the number of conditional branches... I wish you best of luck, it's been a long time since I have seen anyone attempt an evented CMS :) (ohhh nostalgia of the RM2k/3 days, I am actually kinda excited to see what you come up with :D )
  5. I hear that man. When using RPG Maker 2k3 I spent countless hours working on numerous projects, none ever made it even close to a demo xD Anywho, welcome to the forums! I hope you enjoy your time here!
  6. Ragin hard at facebook. Anyone that uses facebook, please abandon ship: https://plus.google.com/i/AbDKlJbuLQ0:jVYiUkanHq0 i still have 150 invites, google plus is universe's better .

    1. kellessdee
    2. Mr.Fiasco

      Mr.Fiasco

      i want a invite ;D and ill be your buddie

       

    3. kellessdee

      kellessdee

      click on the link in ma status :) unless you did already. Google was smart this time, so you don't have to EMAIL every invite xD

    4. Show next comments  57 more
  7. Although this is a very nice script ( I really like what you did with the message system) I would advise, (NOTE: THIS IS STRICTLY FOR ACCESSIBILITY, in other words, so more people are likely to use this script; if that's what you want) 1. post the actual script, images and instructions in here, so people do not have to dig through the demo for everything, as well as I am sure some people just don't want to go downloading things... 2. Maybe some screenshots or a vid. Not important, but I think if you had a screenshot or 2 people would be more likely jump on this. Other than that, I say good job sir for making such a smoothly animated message system. *mad dapz*
  8. Nice kiriashi, I haven't heard disturbed in ages! Youtube Video ->
  9. I think the best way, for a non-scripter, would be to store those values in variables of some sort, for example; for each actor have a set of variables for that actors Courage, Charm, Intellect, etc. and then they could be read from and added to the status menu. If they are stored in the in-game variables, it would be easier for you to use them in your game. I think your best bet, would be to gather all the specific details of what you want EXACTLY, and post a request in the script request forums: http://www.rmxpunlimited.net/forums/forum/15-scripts-request/ It is a simple request (meaning it shouldn't take long to receive), especially if it is JUST a status screen edit you require.
  10. I second, triple and quadruple this notion. Youtube Video ->Original Video Youtube Video -> Youtube Video -> Youtube Video -> Youtube Video ->Original Video Explicit? ok i will stop now....for now...... EDIT: I didn't listen to all of them at the same time, but I am gonna try that now and see what it sounds like :alright: EDIT2: NOPE, don't do that, made me get a sense of claustrophobia
  11. If you liked that Madanchi, I would suggest looking up more Reggie Watts - he is a true performer (comedian/musician/master of linguistics&Impressions/I dunno he's hilariously awesome) F*** S*** stack is more a mockery of popular rap/hip-hop; here's another idea of the kinds of things he does and how he makes his music(he only uses his voice for everything): Youtube Video -> He also has a lot of awesome stand-up acts
  12. I just read the topic's title out loud :D for those of you that haven't heard of Reggie Watts, listen nao. WARNING EXPLICIT/OFFENSIVE LANGUAGE AHOY (read: LOTS OF *BLEEP*ING SWEARING)
  13. NEVER GOING TO WORK AGAIN YEAHHHHHHHHHRRGHHHh
  14. Well, it's kinda hard to make a tutorial for a new menu page, as it would have to be very specific depending on what the page is supposed to do. If you want to learn how to add a entire new page, you would have to learn how to script for RPG Maker first. What exactly are you trying to do?
  15. k cool, that should be easy then. I am off to work for 5 hrs though, so it may be a lil bit before it's done. EDIT: Finito, I wasn't sure if you wanted the stop animation all the time, so it is setup so you can turn it on or off. To do this: $game_player.step_anime = true # turn ON $game_player.step_anime = false # turn OFF All you have to do, is name the stopped character set whatever you want, and the walking character set must have the same name as the stopped charset, except with "walk_" in the front. ex. hero_one.png walk_hero_one.png SCRIPT (before main, as per usual; this should work with any other script...although you never know) class Game_Character attr_accessor :step_anime end class Game_Player def initialize super @walk_character_name = '' @stop_character_name = '' end alias :new_ref_stop_anim :refresh unless method_defined?(:new_ref_stop_anim) def refresh actor = $game_party.actors[0] @stop_character_name = actor.character_name if File.exist?('Graphics/Characters/walk_' + actor.character_name + '.png') @walk_character_name = 'walk_' + actor.character_name else @walk_character_name = actor.character_name end new_ref_stop_anim end alias :new_upd_stop_anim :update unless method_defined?(:new_upd_stop_anim) def update new_upd_stop_anim @character_name = Input.dir4 > 0 ? @walk_character_name : @stop_character_name end end
  16. I done things like this a few times. Do you want this for all characters or just the player? Or if you wanted it could be scripted for a 5 frame animation, switching to only the walking animations for movement, and save you on having 2 sets for every character hmmmm>?
  17. I like it. Especially the way you made the "W" on warriors, very awesome. The only suggestion I can make (which is PURELY my personal preference, i wouldn't say necessary AT ALL) perhaps a border around the banner? And by that, i just mean say like a white/black(or any color really) 1px solid border; only because I prefer to have my banners clearly separated from say, a webpage's background (non-issue) I would also, if the stars are on a separate layer, add a bit of a Gaussian blur to them (just the stars) right now I think they stand out a little too much, and would personally try to blend them with the background a bit more. (also, really a non-issue) Other than that I think it looks fine, and no changes necessary. :alright:
  18. What Marked said. That, and if you wish to push this around to other sites, go right ahead. I'm sure other people may feel it's a good idea, so it couldn't hurt. There's not so much a plan as it was just going to be an attempt to let Enterbrain know a lot of people want a new RPG Maker now.
  19. Whoa, I didn't hear about this one until recently, and apparently it actually had hit Ontario (albeit very weak) and I slept through it. Glad to see you're okay though, and that your house was too far away for real damage. I think this is the second (that I know of, in my liftime) earthquake to hit Ontario, and I think I slept through both of them. Not that it's a bad thing, as I am very grateful that not very many natural disasters hit Canada. If anything, I would say Mother Earth is just fed up with Human kind in general; but that's a completely different matter :o
  20. True mastery of listening powers: can listen to 4 songs at once +1 get him to the greek, so jokes ARE YOU DISCOURAGING ACTIVITY???? Youtube Video -> BREAKS RULES BECAUSE ARTIST AND SONG ARE RIGHT IN THE TITLE DANGER - 11h30 edit: Oh yea, btw; this is a really awesome idea for a topic, not the most original but I think we need one. It's time for me to listen to something new.
  21. I love psychological stuffs, here are my responses :) 1. cute cuddly fast 2. cold bright soft 3. alone dreamy void 4. wet refreshing cold
  22. Is it really so hard to believe? Maybe, just over 50% of our members decided to come vote for cake, because they deserve it so much!
  23. Cake really really helped me this month! Cake deserves my vote the most!
  24. Thanks guys :) Glad you like the new design! Basically, the past few days went something like this: -spilled a glass of fruit punch in my laptop (yes, right into the keyboard) -freaked out a bit -finished exams -dedicated my time to rehauling the website and reading about design/looking at examples (since that's really all I could do from my mom's pc) -learned about CSS3 -had a ball -found out my laptop would be fine (I brought it into a shop) And here I am, i fixed up the graphics, etc. And I actually have changed the logo/navigation SLIGHTLY. (I haven't fixed up the heading colors yet marked :3) I don't want to post updates every little change, but out of curiosity, do you think this looks better? @marked: thanks for more links! I really have to get around to looking into HTML 5...but the link on CSS3 in IE < v9 is really awesome! That was the only thing I was kind of worried about...I haven't tested the website in anything less than v9; so I don't know how bad it would look without the CSS3 @noob: Yea, normally I would have, but originally I had completely forgot that my laptop is widescreen, and thus abnormally wide. And that is shocking, even 1024x768 is becoming rare! But really, it only makes sense. EDIT: I also, just realized what EXACTLY the website you posted is...! Awesome, I was just changing my pc's resolution to check it :sweatdrop: this will be useful, thanks again Thanks for all the advice everyone :)
  25. Alright, so I recently found out that my web tech teacher failed to mention CSS3 at all....and with a bit of playing around i think I have vastly improved the layout, and colors. I THINK anyways :S hehehe So i uploaded the site to my public folder in my dropbox, so this *should* work, if you want to preview the site. If not, (or in case you do not wish to travel outside this thread) I have included some screenies :3 * I JUST NOTICED THAT THE POSITIONING OF THE LOGO NEEDS TO BE CHANGED, IN LOWER RESOLUTIONS THE END IS SLIGHTLY CROPPED * wing gaming preview SCREENSHOTS 1366x768 1024x768 Once again, I'd love some feedback if possible. Thanks guys :3
×
×
  • Create New...