| Dragon Warrior game with a live battle system.
|
|
0 |
|
|
| I think it would be nice if we can do just that, most programs allow that nowadays also, and maybe only update the …
|
|
3 |
|
|
| Lummox JR made a post a while back on programming levels in ID:312975 I think I pass as an intermediate programmer, but …
|
|
77 |
|
|
| OK, I was made a DMP saver utility and now I need to make a DMP loader, I can imagine this isn't the easiest thing to …
|
|
2 |
|
|
| I just got an awesome deal with dreamhost today and just bought a new website. I know I have unix shell access. I was …
|
|
1 |
|
|
| I was looking through byondcore.dll in notepad and found this var, what does it do? Also what does the SHOW_CODE macro, …
|
|
2 |
|
|
| I am going to make a demo for a HUD based battle and was wondering whats better to use, images or client.screen. I know …
|
|
1 |
|
|
| number proc shiftleft(a,b) return a I thought byond numbers only have 16 bits of precision. I am clearly seeing more …
|
|
6 |
|
|
| I wanted to make an encryption formula thats cipher text was as long as the plain text, while providing strong …
|
|
21 |
|
|
| I'm making a CGI application, but I don't want people to be forced to make a BYOND key to logon. I was wondering whats …
|
|
3 |
|
|
| I'm running windows xp x64 edition and I can't install sp2 without an error, do any software applications need sp2 to …
|
|
5 |
|
|
| Is there anyway the savefile format could be documented? I want to make an external application to open BYOND savefiles …
|
|
5 |
|
|
| mob proc filter(string) for(var/i in src.curses) var/pos = src.case ? findText(string,i) : findtext(string,i) …
|
|
13 |
|
|
| Could we have 2 more preproccessor directives call regions like in C#? #region extras +/- symbol to shorten code …
|
|
16 |
|
|
| Could we have a ref keyword since we dont have pointers or anything. Like if I wanted to swap 2 variables I could do …
|
|
2 |
|
|
| //Title: Prime Number Checker //Credit to: Xx Dark Wizard xX //Contributed by: Xx Dark Wizard xX /* This will check …
|
|
2 |
|
|
| Whats better, encrypting my savefiles (which could lead top them much larger) or just adding in. proc Hash(mob/M) …
|
|
22 |
|
|
| I have came up with another simple formula, that allows 65535 possible combinations to decrypt it, while not bloating …
|
|
2 |
|
|
| //Title: "Clip" //Credit to: Xx Dark Wizard xX //Contributed by: Xx Dark Wizard xX /* Returns a value between the …
|
|
1 |
|
|
| /* Credit to Dark Wizard Thanks to wikipedia. */ proc BubbleSort(list/L) for(var/i = L.len, i > 0, i--) for(var/j = 1, …
|
|
1 |
|
|
| //Title: XOR-Based String Encryption //Credit to: Xx Dark Wizard xX //Contributed by: Xx Dark Wizard xX /* A very …
|
|
2 |
|
|
| /* Credit to Dark Wizard Compares 2 lists and checks associative values */ proc CompareLists(list/L,list/J) if(L.len …
|
|
0 |
|
|
| //Title: Circular Bitshifting //Credit to: Xx Dark Wizard xX //Contributed by: Xx Dark Wizard xX /* These 2 procs will …
|
|
5 |
|
|
| Anyone know how I can make my gmail filter stricter, I am getting alot of scamming email like -> From the Desk of Dr …
|
|
3 |
|
|
| Say I have the following class, is it always a good idea to make data private? And if I have a value that will not …
|
|
3 |
|
|
| I'm using MSVS express and am wondering if there is a way to not have that blue file menu, it really looks awful and …
|
|
2 |
|
|
| Is it better to have all my monsters mobs or should I make them objs since they have no need for client vars and such …
|
|
8 |
|
|
| I'm pretty sure internally when a number is modified with the bitwise operators it turns from a float to a unsigned …
|
|
3 |
|
|
| The formula would be, 1. Break value into single letter ascii 2. Xor it with a key 3. Circular bit rotate it the number …
|
|
3 |
|
|
| Could we have a DM number CSS attribute for our blogs?
|
|
2 |
|
|
| Anyone want to try to unlock the onion knight job? You could post your friend code.
|
|
0 |
|
|
| Anyone have any good tutorials on it? I figured I need to learn a web langauge and my library has no PHP books :( all …
|
|
7 |
|
|
| Im using Firefox and realized I cannot add or remove contributors for my blog but I can still add a post on squeegy's …
|
|
0 |
|
|
| All we have so far is ASSERT(condition) which isn't all that helpful I would like to have some sort of …
|
|
14 |
|
|
| I have worked out the skill system and stuff in my game (it is a dragon warrior game with a zelda battle system) and …
|
|
0 |
|
|
| I am not making any sort of decompiler I am just wondering if BYOND get compiled into weird instructions like java …
|
|
3 |
|
|
| I am having some issues making my text editor in C#. It is mainly by me having a very bloated Syntax_Highlight class, …
|
|
7 |
|
|
| I need money and want to know if anyone plays MTG, I have over 100 rares (decent ones double life damnation and stuff) …
|
|
4 |
|
|
| Anyone know how I can manually edit it? It tells me I have XP pro X64 installed twice and only one copy works. When I …
|
|
11 |
|
|
| Am I allowed to make one, I have no plan on releasing it. I have been working on one in C# and was able to pull …
|
|
22 |
|
|
| The UP and DOWN constants. step and to. precedence of the in operator (I still have no idea).
|
|
1 |
|
|
| For some reason I wanted to make C# a keyword and it changed it to C.
|
|
1 |
|
|
| I would like to be able to host multiple worlds within DD without having more than one open. Is this feasible?
|
|
3 |
|
|
| I hvae XP X64 and I want to get vista ultimate (OEM). I just made 280 dollars for helping my neighbor move and am …
|
|
54 |
|
|
| I am thinking about making my new sudoku game open source. I feel people can learn from it. Should I license it?
|
|
26 |
|
|
| Could we be able to do for (var i = 1 ;i We can do var i for normal vars, we should be able for loops.
|
|
7 |
|
|
| I'm working on a libary that will have alot of commonly used procs. Here is what I have so far, list2text text2list …
|
|
3 |
|
|
| I would really like if we could be able to use file2text on files with null ascii chars, and we could be able to show …
|
|
4 |
|
|
| I decided to post here, because some of you don't read the blogs. I have been working on a text editor in C#, that can …
|
|
2 |
|
|
| Can I use the operator keyword to make a ** operator? Is it considered bad programming to use a char as a very small …
|
|
6 |
|
|