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

sir zach

Members
  • Posts

    181
  • Joined

  • Last visited

    Never

Everything posted by sir zach

  1. I'm jealous, yet again. Good job!
  2. > Bri - Zach, I want to see your six-pack > Me- I don't have one to show > Bri- Just flex for me > Me- Ok > Bri- No, really, flex! > Me- I AM!!!
  3. I'm Christian, and proud of it. It was just funny.
  4. It's blue most likely because it's night time.
  5. sir zach

    PAX

    Oh damn… Idk now xD
  6. sir zach

    PAX

    I'm probably going to go! Is it free?
  7. sir zach

    PAX

    =D I'm going to talk to my friend and see if he wants to go, I don't want to drive to Seattle yet because I just got my license. It's only like an 1-1.5 hours away for me, so hopefully I can go.
  8. I know I'm young but I am not thinking about marriage. I am just simply saying that she isn't allowed to hang out with guys a lot because of the courting rules her parents have. And thats why the courting sucks. I wouldn't mind it if we could actually do things.
  9. So I met my friends mom and her boyfriend today, and we were talking about wine, then that turned into communion at our church and then the boy friend, Martyn asks: > Martyn: Didn't Jesus turn water into wine? > Me: Yup! > Martyn: Awesome. Yeah Jesus just said, 'F_ck this shit! I'm making wine! My holy home-boiss, we are drinking tonight!'
  10. They are over protective and want the best for her daughter so they want to make sure they like me with out a doubt. And they want their kids to date with the intention to marry, but not dates with only two people, the dater and the date-ee. Lol.
  11. Trust me, I have many points with her family xD
  12. Oh they like me. They told me so. My friend is 19 and is going through this with their oldest daughter. And they won't even let her go to the movies with him. I have known them for like 4 years.
  13. Thats the thing… You have to do stuff with her family in order to get courted. Can't be alone, like at all.
  14. Lol, I'm only 16 and she's 15 1/2 but it sucks because she can barely do anything. And her parents don't like company at the moment.
  15. No, not like judge and that stuff. Courting with someone. Like girl + guy. It sucks.
  16. Oops I didn't even see the previous post with the answer lol. I don't deserve a cookie :P
  17. I thought you were allowed to make money off of it only if you used fully custom graphics.
  18. Yeah, it is. I just posted in it lol.
  19. sir zach

    Making GUI's

    You need a graphics program, something like photoshop for good GUIs. And if you want to edit the source of the GUI you need Visual Basic 6.
  20. How can you tell? And… I like it how you post it in General Chat so your post can go up and it has nothing to deal with Eclipse.
  21. So I have been reading these amazing books called Black, Red, and White. They are part of a trilogy called The Circle Trilogy. Anyways… I didn't have an idea for a game but I eagerly wanted to make one. So bam!! The idea kicked in... Why don't I make a game based off these books?! But then I thought... Wouldn't the law get in the way? So I went onto the author's website, Ted Dekker, and went to his contacts page and emailed a random person asking who I talk to about making a game based on the Circle Trilogy. This morning I woke up to my favorite email. An email from Ted Dekker's Brand Manager. He wanted to know about my previous projects and a little about me. So I wrote up a quick bio, sent him links to some websites I created, and asked him if he wanted me to send some pictures of my previous game projects. I still have yet to get a reply from him but I have a good feeling about... Wish me luck!!
  22. Here is a compilation of videos I have created. They show new users how to use Eclipse. **Starting Up A Server (EE2.7)** - [Download](http://rapidshare.com/files/128059346/starting_a_game.rar.html) [1.54MB] **Replacing Tilesets (EE2.7)** - [Download](http://rapidshare.com/files/128577387/replacing_tiles.rar.html) [1.38MB]
  23. This allows people to move using WASD. It is all Client Side. Side Note: It does have errors with the chat box because of the characters its using. But I have a fix for this, [here](http://www.touchofdeathforums.com/smf/index.php/topic,28926.0.html). It is also coded around that other tutorial. If you need help and don't want to use the other code, just let me know and I can edit this code to suit your needs. **All of the edits are in modGameLogic.** 1\. Find: ``` If KeyCode = vbKeyUp Then DirUp = True DirDown = False DirLeft = False DirRight = False End If If KeyCode = vbKeyDown Then DirUp = False DirDown = True DirLeft = False DirRight = False End If If KeyCode = vbKeyLeft Then DirUp = False DirDown = False DirLeft = True DirRight = False End If If KeyCode = vbKeyRight Then DirUp = False DirDown = False DirLeft = False DirRight = True End If ``` Replace with: ``` If KeyCode = vbKeyUp Or (KeyCode = vbKeyW And frmMirage.txtMyTextBox.Visible = False) Then DirUp = True DirDown = False DirLeft = False DirRight = False End If If KeyCode = vbKeyDown Or (KeyCode = vbKeyS And frmMirage.txtMyTextBox.Visible = False) Then DirUp = False DirDown = True DirLeft = False DirRight = False End If If KeyCode = vbKeyLeft Or (KeyCode = vbKeyA And frmMirage.txtMyTextBox.Visible = False) Then DirUp = False DirDown = False DirLeft = True DirRight = False End If If KeyCode = vbKeyRight Or (KeyCode = vbKeyD And frmMirage.txtMyTextBox.Visible = False) Then DirUp = False DirDown = False DirLeft = False DirRight = True End If ``` 2\. Find: ``` ' Check to make sure they aren't trying to auto do anything If GetAsyncKeyState(VK_UP) >= 0 And DirUp Then DirUp = False End If If GetAsyncKeyState(VK_DOWN) >= 0 And DirDown Then DirDown = False End If If GetAsyncKeyState(VK_LEFT) >= 0 And DirLeft Then DirLeft = False End If If GetAsyncKeyState(VK_RIGHT) >= 0 And DirRight Then DirRight = False End If If GetAsyncKeyState(VK_CONTROL) >= 0 And ControlDown Then ControlDown = False End If If GetAsyncKeyState(VK_SHIFT) >= 0 And ShiftDown Then ShiftDown = False End If ``` Replace with: ``` ' Check to make sure they aren't trying to auto do anything If GetAsyncKeyState(VK_UP) >= 0 And DirUp Then If GetAsyncKeyState(VK_W) >= 0 Then DirUp = False End If End If If GetAsyncKeyState(VK_DOWN) >= 0 And DirDown Then If GetAsyncKeyState(VK_S) >= 0 Then DirDown = False End If End If If GetAsyncKeyState(VK_LEFT) >= 0 And DirLeft Then If GetAsyncKeyState(VK_A) >= 0 Then DirLeft = False End If End If If GetAsyncKeyState(VK_RIGHT) >= 0 And DirRight Then If GetAsyncKeyState(VK_D) >= 0 Then DirRight = False End If End If ```
×
×
  • Create New...