- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
7 Posted Topics
Re: I would recommend the Blitzmax programming language. [url]http://www.blitzmax.com/[/url] | |
Re: Old thread. Meh, [code=C#] static string chex8(byte e) // decimal (byte) to hexadecimal conversion { string r = ""; string chars = "0123456789ABCDEF"; r += chars[e >> 4]; return r += chars[e &= 0x0F]; } static byte CRAZY_BYTE(string t, int i) { if (i == 0) return 0; throw new … | |
Just thought I'd pop in and say hi, since I've just signed up here. Name: Well, what do you think I have an alias for? Age: At this time of writing, 17. Occupation: Student Hobbies: Programming, gaming, and doing random backflips in public (that last one was a joke). So … | |
Re: I'm fully aware that this thread is quite old now (I found it on google), but I wanted to post something here: Here is my own search and replace function(s) for strings. Just read in a textfile and read every line as a string (and modify that string, then replace … | |
Re: [QUOTE=tomtetlaw;787328]I want to know how to position and rotate a gun to make it look like it does in other FPS games, any help?!?[/QUOTE] I current know nothing about games programming, but what I am fully aware of is your inability to show the source code to your game. Without … | |
Awhile ago I wrote some functions to convert from isbn10 to isbn13, or from isbn13 to isbn10; and subsequently some function to validate isbn 10/13 numbers. I thought I'd post them here to see what people think of them. So, [code] ' Validates an ISBN13 number. If false, it's invalid, … | |
Re: [QUOTE=araizex;786449]Hi, I'm learning Visual Basic now, n right now working on a project. Hope to get more information VB. Thank you![/QUOTE] I can help, if you like (me studying vb.net too). EDIT: Oh, you're using VB6. Nevermind. |
The End.