Jump to content
A 2021 backup has been restored. Forums are closed and work in progress. Join our Discord server for more updates! ×
SoaH City Message Board

USC

Members
  • Posts

    693
  • Joined

  • Last visited

  • Days Won

    29

Everything posted by USC

  1. I'll always have a soft spot for ShenSonic, a recreation of ShenMue in Sonic form.
  2. Congrats Eminence; having money coming in is a nice feeling. XD As for me, after a six month stint of homelessness I got a job with the local police which I enjoy quite a bit. I'm also helping my landlord with his business/charity as a graphic designer/general tech dude. Keeps me busy.
  3. A year or two back, there was a move to make complete tile rips of all Sonic games, and a few Ristar zones were done by Overbound and myself. Here's links to them... http://www.sonicfangameshq.com/view.php?sec=3&id=272 http://www.sonicfangameshq.com/view.php?sec=3&id=276 If you actually make a complete spritesheet using Feel, 'feel' free to submit it to the main site (pun unintended but I ran with it).
  4. I guess what you could do is have an invisible object that's an outline of the ring, something like... /---\ / \ \ / \___/ ...and code it so each of those objects has rings attached to it at specific points like (-10, 0), (-5, 5), etc. That way you could still do the whole "When NiGHTS flies through the center of the invisible ring, he destroys it and gets points) thing.
  5. Ah, okay, didn't think of that. You could just pad each row with spaces (IE: "There are a good " to fit it to 22) after you get a token that surpasses SizeLimit to keep the count accurate. That could be done with either a loop - Add " " (SizeLimit - Display.size) times - or by having a String that's 22 spaces long and taking a substring of it (0 to (SizeLimit - Display.size)).
  6. This is me thinking out loud, but hopefully it'll help in some way. You would need the following objects... -------------- 'Display' String/Textbox 'Token' String 'Full Text' String 'Size Limit' variable --------------- Alright, once you have your full text entered, you break it up into tokens using the Split function (IE: in "I want a ham sandwich, dadgum it!", tokens would be "I", "want", "a", "ham", "sandwich,", "dadgum", and "it!" as they're all separated by white space). Next, you loop through token by token and add the length of the Display string to the length of the token. If the sum is less than 'Size Limit', then add that token to the display string using the Type Writer effects. (IE: length of 'I' is 1 and length of Display is 0, so add 'I' to Display. Next, length of 'want' is 4 and length of Display is 1, so add 'want' to Display. And so on...) If length of Token + length of Display is greater than 'Size Limit', then add a newline to Display (putting you on the next line down), add the line width to Size Limit (IE: If you're restricting it to 30 characters per line, add another 30 to Size Limit), and add the token to Display; it should now be on the next row. --------------------- Hope that helps. Let me know if I need to explain more clearly, or if MMF2 doesn't have all those abilities.
  7. Don't suppose you could be more specific, could you? You might not be able to get a dedicated spriter, but I bet you could get some help on specific parts.
  8. Wow, that's a pretty good idea! In a way, it helps center/'normalize' the (TEAM) GR and make it all one block. I'll see if I can incorporate that into my next revision. Here's my next attempt, doing some work on the GR! bit to make it look less drawn-by-hand... I think if I mess around with the palette and palette attributes a bit I can get the two shades for blue to make the POKEMON title '3D' and still have red for the bottom. Here's hoping... Thanks for all your help so far TailsSena, and for going to all that effort (yeah, the tilemap makes me tear my hair out too).
  9. Thanks for the reply! I'm not actually doing the translation, just the graphics work (EG: The title screen and the 'Card Pop!' graphics, not the text). My big issue is the tile map limit; I can't draw in any area that's colored pink in my previous post (in the third row). I can hex-edit different colors in, but there can only be 4 to a tile (including the background color). I tried to spruce up the 'GR!' on the title screen, so here's what it currently looks like. Any thoughts would be appreciated.
  10. Hey! So, I've been helping out with making graphics for a GameBoy translation hack, and I'm currently working on the title screen and the link cable graphics. Since the group that's translating doesn't want to edit the tile maps, I've been somewhat constrained in what I can do. If anyone has any suggestions about what I can do to make it look better, I'd really appreciate it - the GR! in particular is troubling me. Yes, I know it's Pokemon. I actually enjoyed the Gameboy Card game... I also made an alternate 'dark' version that I thought looked pretty good too... Any comments would be way cool. Thanks!
  11. http://www.sonicfangameshq.com/view.php?sec=2&id=714 http://www.sonicfangameshq.com/view.php?sec=2&id=911 or (slightly weirder) http://www.sonicfangameshq.com/view.php?sec=2&id=705
  12. HardWare Accelerated runtime is what it stands for; it's an API from DirectX. Here's a little more info on it... http://www.fusionwiki.com/wiki/Multimedia_Fusion_3#Using_the_advantages_of_HWA
  13. Unfortunately, things not displaying properly in a webpage just comes with the territory. There are way too many variables (computer resolution, different browsers and between browser versions, security restrictions, plugins, etc) to write a perfect standard. That's where the old human intelligence comes in...
  14. W3C Schools has some pretty good tutorials on pretty much every web-based language, as well as reference guides for the obscure stuff. Adding to what Lt. Worm said, try to study MS Access if you aren't able to practice SQL at the moment; it'll give you the basic idea of how databases work, and is used quite a bit in the corporate work.
  15. It might be the exponent...Try (0.8) * ((X-8)*(X-8)) - 81 *On second though, you might need to explicitly add the multiplication sign between 0.8 and the rest of the equation.
  16. This site right here has pictures of level maps for S2 -> S3&K. Hope that helps get ya started.
  17. Yeah, Up's a great film. Just don't watch it with anyone you wouldn't want seeing you cry; the first couple of minutes alone...
  18. I know a guy, he'll do it for pretty cheap... (I saw the post before he deleted it; basically he was asking if someone could draw some Phoenix Wright-style backgrounds for his fangame).
  19. I don't know anything about Construct, but from general programming knowledge you can't directly access private variables (that's why they're private!). You have to make functions to get and/or set these values, like so... //Getting MovingPlatform's X position variable moveX = MovingPlatform.getX() //Setting MovingPlatform's X position MovingPlatform.setX(120) Again, don't know if Construct works that way, but hopefully this helps.
  20. @Strife: That's some spiffy stuff there. From the other picture with the inside of the treehouse, are the levels going to have multiple rooms you can go in and out of (a la Donkey Kong County)? @Overbound: Haha, nice. Got any plans to use it in a game, or is it just something you wanted to try making? ------------------- @Sparks: More of an Ernest fan myself, but the name's just a joke on the waterfall being the coolest thing I've made so far in the level. @Hybrid35: Glad to hear it; I'll try not to disappoint then. @Saito: Nah, no Flicky rescues here. I'm trying to make a isometric platformer, which has been challenging - mostly due to perspective changes and making sure it's easy enough to do things like this... ...the coding was fairly simple, but making it so Sonic doesn't have to be perfectly aligned to connect with Tails, well that's another story.
  21. It's been a long time since I've tried using the String Parser, but there should be an option to define the delimiter (possibly on the object itself in the Play Field); if not, I guess you could make a routine that takes in the sentence, then goes through the string and checks each character to see if it's a space. As a small recommendation, I'd suggest converting each sentence into either all UPPERCASE or lowercase; this will make your life much easier as far as figuring out what the sentence should mean.
  22. Pressing Enter clears Edit Box before Edit Box 2 can evaluate it (try removing the 'respond loop' condition and see). My suggestion would be to add to the 'Press Enter' event a command that sets a String equal to the value of the Edit Box, then use the string for AI comparisons. Hope that helps.
  23. Here're some pictures from my upcoming demo, Sonic goes to Splash Mountain! ...Still working on the title...
  24. So in most Western countries it's Valentine's Day. I realize the "computer nerds can't have relationships" cliche probably applies here too, but I'm sure some of you have significant others. I'm single, so I'm volunteering at a children's hospital today. I can help sick kids have a nice day, while at the same time repressing my crippling depression and loneliness in a way that doesn't annoying everyone else in the bar. Everyone wins! How about the rest of you? What're you guys doing for St. Valentine's and/or Single Awareness Day? oh jesus I'm so alone
  25. Plus, going to Google and typing Time Dominator plus a 3-letter word begin with 'R' will get you what you need to rip the background. Hope that helps.
×
×
  • Create New...