Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Kemerd

Members
  • Posts

    767
  • Joined

  • Last visited

    Never

Everything posted by Kemerd

  1. Bump, because I'm only gonna be here for like 5 minutes before leaving for months again.
  2. Not trying to be a douche, but the blue and the buttons are hidious…. Sorry. ;_;
  3. The forums say that this topic is hot. What ever floats your boat, Eclipse.
  4. Nice enough engine, but the tilesets are hidious. I'm not tryingto be a jerk, but they look all stretched and sometimes the tilesets just switch color schemas, and… I don't know.
  5. VC# 2010 Express: PQT8W-68YB2-MPY6C-9JV9X-42WJV VC++ 2010 Express: 6VPJ7-H3CXH-HBTPT-X4T74-3YVY7 VWD 2010 Express: CY8XP-83P66-WCF9D-G3P42-K2VG3 VB.NET 2010 Express: 2KQT8-HV27P-GTTV9-2WBVV-M7X96 To all you people out there who are going to say: > *snort* You can't put *snort snort* Visual Basic *sniffle snort* keys out on Eclipse *snort* that's *snort snort* illegal! You can suck it, Visual Basic 2010 keys are free and legal to get by yourself. Yes, that's right, VB2010 keys are free. This is just for the newbies or people who can't find (or are too lazy to) get the keys themselves. Enjoy!
  6. On Game GUIs, try to lessen on the curves. Also add borders, and gradients on the buttons, add some 3Dishness.
  7. Shall be fixed. Immediately. ======================= Once again, the download links are perfectly fine, if you get the; OOPS! ; Screen, just wait 5 seconds for it to restart the download.
  8. This would probably become the most-used custom version if made open-source.
  9. Thanks you for this amazing pack Kemerd! … Wait a minute ...
  10. Kemerd

    Torque3d

    I don't see why so many people stress over Unity, when Torque3D is about 5x better and easier in graphics and performance overall. What Torque 3D Matches Unity In: 1\. Smooth art pipeline thanks to COLLADA 2\. PhysX Implementation 3\. Web Publishing 4\. Integrated editors 5\. Free support via community and documentation 6\. Simple deployment 7\. Shaders 8\. Scripting 9\. Intuitive user experience What Torque 3D has over Unity 3D: 1\. Superior rendering capabilities which rival Crytek or Unreal. This includes effects that are not even possible with Unity such as post processing effects. 2\. More control over your environment and level editing 3\. More powerful and varied tools (all WYSIWYG) * Real Time Terrain Editor * Real Time Terrain Painter * River Editor * Mesh Road Editor * Decal Road Tool * Decal Editor * Material Editor * Datablock Editor, which reduces the amount of manual scripting you have to perform * Shape Editor, which allows you to custom build your animated objects and their animations from within Torque 3D * ToolBox 4\. Based off an engine with far more [published games](http://www.garagegames.com/torquepowered/console) and a stronger track record 5\. Way more employee to user interaction and support 6\. A stronger, veteran community (I love the GG.com community) 7\. Superior documentation: more content, higher quality, more features (dynamic docs), and more video tutorials 8\. Torque 3D's networking is so much faster than what Unity offers, it's not even funny. 9\. Full source code access 10\. Frontline Award for Engine of the Year…hmm, that means far more people use our engine and found it to be the best you could use out of a competitive list. That includes Unity or Gamebryo Should I keep going? I think I could hit the post limit if I do. Just a quote... but seriously. This engine actually has a huge base, but everyone just ignores it. The rendering rivals CryEngine3. Just putting it out there for people who need something like this. Oh, and it's realtime.
  11. The rules are simple. This is a game where you replace letters, and try to make a secret code for the next person to decode. After 5 guesses you have to tell us the code, and the message. All the guessers have to do is decode the message. Also, you can give one hint. Nothing to elaborate. More like swap every key on your keyboard over, so I might type: ;ryd ytu yjod @ In this case, I went to the right one over every time I typed a letter. The message was: lets try this! L one key over is ; E one key over is R. And so on. Just something to do if you're trying to get your brain ticking. I'll start off this an easy. 20-8-9-19 9-19 5-1-19-25 Hint: Everyone knows this. You probably did it as a kid.
  12. You resize the Picscreen, and then take those measurements, and modify the screen size somewhere in the code in two places. I can't remember where, only that it has to be a factor of 32\. Try the search button.
  13. Well, I've decided to give up this project due to Eclipse - The Final Frontier being way better.
  14. Very nice. Very very nice. Hehe. Hehe. *walks off evily*
  15. IunderstoodeverythingyousaidandIthoughtitwasfunny ![:lol:](http://www.touchofdeathforums.com/community/public/style_emoticons//laugh.png)
  16. Kemerd

    April Fools

    It's all lies, see? [http://www.touchofdeathforums.com/community/index.php?app=forums&module=extras§ion=stats&do=leaders](http://www.touchofdeathforums.com/community/index.php?app=forums&module=extras§ion=stats&do=leaders)
  17. It's ok, I guess. Trees need work.
  18. Because it's the default thing in the options, why change it? Plus, they look cooler and more… smooth than a clunky check. Just a dot.
  19. For this tutorial, I'll be adding the option, WASD movement. Here's how to add an option for all those people who want options for certian things. This can only be used if you need an option for, let's say, transparent trees (like mine), in the code where the transparent trees make the trees transparent, I added ``` If Options.STT = 1 Then MAKE TREE TRANSPARENT Else MAKE TREE NORMAL End If ``` So, this will require some thinking after the option is made. So with that, let's being. –---------------------------------------------------------------------------------------------------------------------------------- First, you want to go into frmMain, and bring the options to the front. (An easy trick is to right click on the front of the place where the options should be, and keep clicking go to back until the options are in the front. This is a simple yet useful trick when editing the pictureboxes.) Next, copy the label for music, and when it asks you to create a control array, select no. Create two _OptionButton_s. Name one WASDon and one WASDoff (or what your option is going to be named). Double click on the ON option button. Add this. ``` Options.WASD = 1 ' save to config.ini SaveOptions ``` Double click on the OFF option button. Add this. ``` Options.WASD = 0 ' save to config.ini SaveOptions ``` –------------------------------------------------------------------------------- Next, in modDatabase search for: ``` Call PutVar(filename, "Options", "Sound", str(Options.sound)) ``` At the bottom of that list, add: ``` Call PutVar(filename, "Options", "WASD", str(Options.WASD)) ``` Still in modDatabase, search for: ``` Options.Music = 1 ``` Add before SaveOptions: ``` Options.STT = (1 if you want the default to be on, and 0 if you want the default button to be off.) ``` Now, search for: ``` Options.Music = GetVar(filename, "Options", "Music") ``` Before that End If, add: ``` Options.STT = GetVar(filename, "Options", "WASD") ``` Now, search for: ``` If Options.sound = 0 Then frmMain.optSOff.value = True Else frmMain.optSOn.value = True End If ``` Under that, add: ``` If Options.WASD = 0 Then frmMain.WASDoff.value = True Else frmMain.WASDon.value = True End If ``` That should be it! Now you just have to call on the code where you need an Option! Option.WASD = 0 **- Off** Option.WASD = 1 **- On** So call on it like. ``` If Option.WASD = 1 Then BLABLA CODE Else (This means that it is seeing if it's not on, so it must be off.) (You may want code that does something else when it's off, but most of the time you just want it to End, or End If. Do nothing.) End if ```
  20. _**I'm using EO 3.0**_ Just curious, how would I go about rendering a png file in VB6, over the picscreen, and then have buttons over that rendered png without having the buttons be behind the rendered jpeg. Also, how would I go about getting pictureboxes to be in front of the picscreen.
  21. Don't understand why there isn't more replies. This thing is awesome.
  22. Oh. What the duck. AHAHAHAHHAHAHAHAHAHAHAHAHAHAHAHAHAHAAHA' Ok… done now. Good luck. XD
  23. >! Wow. Advertising your programming skills on someone _else's_ programming shop. Using… someone else's fame to benefit yourself? Dude, no offense, I know I'm probably being a douche, but... >! _**Make a topic.**_ EDIT: I'm an itiot.
  24. You always run the server first, and then uTorrent. Also, this topic is old. XD
×
×
  • Create New...