(Link to AcmlmWiki) Offline: thank ||bass
Register | Login
Views: 13,040,846
Main | Memberlist | Active users | Calendar | Chat | Online users
Ranks | FAQ | ACS | Stats | Color Chart | Search | Photo album
06-01-24 08:49 PM
Acmlm's Board - I3 Archive - - Posts by HyperHacker
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
User Post
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-13-07 11:39 AM, in WE ARE THE DALEKS, WE COME FROM THE BLACK HOLE WHERE THE DOCTOR IMPRISONED US Link
It is if "a while" is a second or two.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-13-07 11:39 AM, in I exist. Link
Damn.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-13-07 11:51 AM, in This is why I love school Link
Ah, school. The place where Notepad is a virus, swearing, wearing a hat or setting fire to the building nets a three-day suspension as "punishment" (), "looking like you're going to fart" is reason enough to be kicked out of class, librarians do a better job of computer administration than the computer administrators, self defense is as bad as slugging someone in the face ("zero tolerance" ), selling drugs in class is perfectly acceptable, and people graduate without being able to spell 6-letter words. And that was just high school.

No I didn't set fire to the building (nor wear a hat), but it did state this in the rule book. Yes I realize the irony of complaining about peoples' spelling and then starting a sentence with "and", I just don't care.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-13-07 11:56 AM, in Spiders Link
Oh God yes, the way mousquitos (any bug, really) swarm to me you'd swear I was honey glazed.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 03:26 AM, in Diddy Kong Racing Code Link
Interesting. So this is a global max speed modifier? Nice job, a few things I should point out though.

-What version is this for?

-Codes would be better off in General Gaming, you're not modifying the ROM at all.

-Floats are generally denoted by writing 25.0.

-The standard for comments in ASM is to use a semicolon. Please also try to space out your code to make it readable. If you're using Renegade64, just write plain old "NOP" and it'll make a short NOP. So for example...
803fffc0 ;points to an address equal to the speed address -0xc4
;Hook to from 80018DA0:
j 80400000
NOP

;Get Speed Address:
LUI T7, 0x8040
ADDIU T7, T7, 0xFFC0
LW T7, 0x0000 (T7)
ADDIU T7, T7, 0x00C4

;Get what goes in speed address and store it:
LUI T6, 0x8040


Originally posted by Zeld
Factor in button activated alterations of 8040002c and you can allow for instant
acceleration/braking for the car and instant acceleration/infinite max speed for the
other vehicles.

It may not be safe to assume this value will be initialized to zero, especially since DKR doesn't use the Expansion Pak. If you get strange results using this method, you may have to add a line or two to zero this address if no buttons are pressed. Protip: Save a line like so:
8140002C 0000
D0123456 0078
8140002C 1234
this makes 8040002C be 1234 if 80123456 == 0078, and zero otherwise.


You must enter floats to the address, which means 4 codes per button combination...two for each 16 bits of the float, and 2 for the button conditions.

You can generally omit the low 16 bits of a float in hacks like this, nobody will notice. The value may vary by a whopping 0.00781.


You will need to know how to get the hex value of a float and convert it to the appropriate GS code.

See attached program I found somewhere that I'll attach in another reply.


is L even used in this game?

Nope.


(edited by HyperHacker on 02-13-07 09:27 PM)
(edited by HyperHacker on 02-13-07 09:29 PM)
(edited by HyperHacker on 02-13-07 09:36 PM)
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 03:37 AM, in Changing ingame music? Link
If you want to play NES music in an N64 game, you have two choices:

1) Figure out the N64 game's music format and write in something from scratch that sounds like whatever you want.

2) Write an emulator that runs on N64 and plays NSF files.

If you don't know how to even edit a pointer you're not going to do #2 any time soon, so I'd suggest looking for music data. Since the format varies between games and I've never hacked music, I can't help you with that.
(restricted)
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 03:54 AM, in Sound record program Link
Audacity does it well, and is free.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 03:59 AM, in Diddy Kong Racing Code Link
So it's a max speed modifier and....?

Attachments

FloatConvert.zip (35942b) - views: 3
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 04:10 AM, in Question about N64 Emulation Link
Plug in a controller and enable it in the emulator settings.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 04:25 AM, in cheer up guys Link
Originally posted by Sweet Kassy Molassy
Originally posted by HyperHacker
It's OK, you don't take damage from falling in SMW! Yoshi just hits the ground and wanders off.


Except that in the levels that don't have ground (not to mention pits,) no ground exists for him to land on, so he falls forever and starves. Poor Yoshi...

There's no such thing as bottomless pits! It's just, uh... the pits all have spikes at the bottom. Yoshi can walk on spikes, but when Mario falls in while riding him, he bounces off and lands on the spikes himself. Yeah, that explains it.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 04:30 AM, in Deleting Posts Link
It's been disabled.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 04:54 AM, in do we have a "Post your desktop" thread yet? Link
Whoo. Reminds me of when I screwed up a routine that was supposed to create 255 files in a folder on the desktop. Lovin' that file named "The".
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 04:55 AM, in Your dreams... Link
I dreamed I broke my DS.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 04:58 AM, in These storms are getting annoying Link
Waah waah waah. Try Northern Alberta. It's been -20°C to -30°C all week, everything is covered with a layer of ice and then some snow on top, and the sun sets at ~5:30PM.
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 05:03 AM, in I exist. Link
You can buy Linux to spare the pain of downloading it on dialup. It costs the price of a CD-R or DVD-R plus shipping.

*HyperHacker doesn't exist.


(edited by HyperHacker on 02-13-07 11:03 PM)
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 05:07 AM, in This is why I love school Link
It took ages to get my account activated too, but that was only because they gave me the wrong password and took forever to fix it.

It was fun though when they forgot to enable the 10MB per-account size limits. The server had like a 250GB hard drive or something, so... that was nice until idiots abused it installing several gigabytes worth of games and they caught on. But they did it again next year!

Though I'd say the funniest computer-related incident that happened in my school was when I sat down at one of the computers in the lab and discovered the last user forgot to log off... and was the network administrator. XD
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 05:08 AM, in I exist. Link
Does anyone still use dialup?
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 05:11 AM, in Spiders Link
I'd just be like "oh, fuck!" and leave the room. Then return later to bonk you on the head.
Originally posted by SamuraiX
Originally posted by HyperHacker
Oh God yes, the way mousquitos (any bug, really) swarm to me you'd swear I was honey glazed.

Perhaps you need more sweetness inside than out?

Maybe I'm so sweet on the inside it's oozing out my pores? ^_________^
HyperHacker

Star Mario
Finally being paid to code in VB! If only I still enjoyed that. <_<
Wii #7182 6487 4198 1828


 





Since: 11-18-05
From: Canada, w00t!
My computer's specs, if anyone gives a damn.
STOP TRUNCATING THIS >8^(

Last post: 6313 days
Last view: 6313 days
Posted on 02-14-07 08:28 AM, in What exactly is it about java that makes it so hated? Link
Any Java app I run will use up at least 100MB of RAM and take at least 20 seconds to load. The Java runtime is 46.4MB without non-European fonts. It worms its way into every nook and cranny, running in the background at all times within other processes such as Windows Explorer and lololol, so it can't be killed. No Java program I've yet used has a decent GUI; Azureus' is nice, but every time I use it it has to update 4 different things and each one requires restarting the program. Tile Molester's menus are a joke, and its file browser is a poor imitation of Windows' standard browser. Every other GUI I've seen in Java is just ugly and lacking basic functionality.

Maybe it's just the Windows port that sucks, but still, it sucks. With Windows being on 90% of computers, that's really not excuseable.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
Acmlm's Board - I3 Archive - - Posts by HyperHacker


ABII

Acmlmboard 1.92.999, 9/17/2006
©2000-2006 Acmlm, Emuz, Blades, Xkeeper

Page rendered in 0.038 seconds; used 460.91 kB (max 604.32 kB)