(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-13-24 05:40 AM
Acmlm's Board - I3 Archive - - Posts by Parasyte +
Pages: 1 2 3
User Post
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-07-06 01:00 PM, in Aw man... Link
Well, I think he sucks for using a crappy emulator...
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-07-06 01:01 PM, in Cat names? Link
The cat names are terrible. Can this board go a single day without doing something utterly stupid?
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-07-06 01:10 PM, in A new beginning. Link
Heh, it will be interesting to see if things actually can go according to plan in this forum. Good luck. ;\
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-08-06 05:26 AM, in Getting started with Z80? (Gameboy) Link
Check out the GB Crib Sheet ... not very tutorial like, but invaluable when you need a quick bit of info. The site also has some other good information as well, including the Rednex Gameboy Development System and related material.

For hacking, be sure to pick up BGB, an emulator with probably the best GameBoy debugger available. (To hell with that no$gmb crap... it sucks.)


(edited by Parasyte + on 03-08-06 04:28 AM)
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-08-06 05:36 AM, in THE RULES. Read or die. Seriously. Link
I suspect if you had moderators who enforced these rules, things would work out a bit better? Try it, sometime.
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-08-06 10:42 AM, in SMB3 hack ideas? Link
DahrkDaiz can't come up with his own ideas?! What is the world coming to??
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-10-06 12:59 PM, in Acmlmbored 1.92.9?? Link
Probably because that is exactly what happened?
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-10-06 01:07 PM, in THE RULES. Read or die. Seriously. Link
That's the spirit! I wasn't saying the forum should be ruled with an iron fist. Just that one last chance is fine; 10 chances, not quite so. How can people learn from their mistakes if they are not pointed out, at the least?
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-14-06 07:27 PM, in Acmlm Board Versions Link
I have the version we used on DES long ago. It contains many bug and security fixes over 1.92, as well as some added functionality. I will package it up if interested? It's unofficial, and I don't know if that is what you are looking for or not.
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-15-06 03:24 AM, in Acmlm Board Versions Link
It's actually older than I thought, based on v1.8.

"AcmlmBoard v1.8r2 © 2000-2003 Acmlm, et al.
Design and Customizations by Weasel, Parasyte, Vagla, et al."

I don't know if any of the scripts have sensitive information or not, probably a lot of security holes exposed by releasing it, but whatever. We haven't used it in 3 years. Check hacks.php for an incomplete list of added features and functionality. The "emulation.php" file (and others, undoubtedly) have some silliness like hardcoded forum IDs.

AcmlmBoard v1.8r2 (DES)
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-15-06 07:10 PM, in Freaky computer happenings! Link
Get yourself a PowerMac G5. Problem solved. CPU power *= 4. The galaxy is at peace.
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-15-06 08:27 PM, in Features for an Acmlm Board. Link
Apart from the security hole patching that is severely needed, I would like to see a few usability-related changes. For one, getting rid of the transition pages after creating or deleting posts, after editing your profile, etc. Sylphagora handles it well enough, if you are interested in examples. (SA is licenced under GPL, by the way.)


(edited by Parasyte + on 03-15-06 07:28 PM)
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-16-06 03:06 AM, in Random Computer Error Link
http://www.microsoft.com/windowsxp/using/security/learnmore/stopspam.mspx
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-17-06 02:29 PM, in I want to change my smilies system... How ? Link
Regex to the rescue! Using this, you will have to escape the special characters used in your smilies list. For example, use ":\)" instead of ":)"
$msg=preg_replace("/(^|[^a-z0-9])".$smilie[0]."($|[^a-z0-9])/imx","$1<img src=$smilie[1] align=absmiddle>$2",$msg);
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-17-06 08:48 PM, in I want to change my smilies system... How ? Link
Originally posted by Stifu
Hmmm, would that change the content of the messages ?
Like if you edited a message with smilies, would you see extra back slashes ?
If not, could you tell me where I'd need to put that line exactly, so I don't mess things up ? Thanks.


No, it does not insert the additional backslashes. Those are needed to escape the special characters so they are not considered a part of the expression. When you edit a post using that code, it will 1) display the img tags if those are not already reverse filtered ... they should be. Or 2) it will just display the smilies exactly as they were originally entered.

What you would do with the code is replace the line that Arthus showed.
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-17-06 09:09 PM, in Favorable Hacking Techniques - Hacking For Dummies Link
Learn to use a decent debugger and all of your problems will vanish. OK, not all; You'll still never finish your project in just your free time.

I think a good debugger is the most useful of all hacking tools. Of course, if your emulator of choice does not have a good debugger, write your own! As with all things that are lacking, creating your own tools (either as a replacement for an existing tool or just because you have no choice) is easily my hacking tip. And well, if you can't program, find someone who can or study up so you may begin the process.
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-17-06 09:17 PM, in N64 Gameshark problem Link
If the hardware has a 25-pin LPT port on the back of it (GameShark Pro v3.1+), you can use GSCC2K2 to upload a new code list.
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-18-06 12:36 PM, in I want to change my smilies system... How ? Link
Did you edit your smilies list? Remember, you have to escape the special characters within the list. The following characters must be escaped:

[ \ ^ $ . | ? * + ( )

Which means that every instance of these in your smilies list must be preceded by a single backslash:

\[ \\ \^ \$ \. \| \? \* \+ \( \)

If you skip this step using my code, your smilie identifiers will be interpreted as part of the regex, which will definitely screw things up. If you wish to take the easy way out, you can have php do the escaping for you:
$smilie[0]=str_replace("[", "\\[", $smilie[0]);
$smilie[0]=str_replace("\\", "\\\\", $smilie[0]);
$smilie[0]=str_replace("^", "\\^", $smilie[0]);
$smilie[0]=str_replace("$", "\\$", $smilie[0]);
$smilie[0]=str_replace(".", "\\.", $smilie[0]);
$smilie[0]=str_replace("|", "\\|", $smilie[0]);
$smilie[0]=str_replace("?", "\\?", $smilie[0]);
$smilie[0]=str_replace("*", "\\*", $smilie[0]);
$smilie[0]=str_replace("+", "\\+", $smilie[0]);
$smilie[0]=str_replace("(", "\\(", $smilie[0]);
$smilie[0]=str_replace(")", "\\)", $smilie[0]);
$smilie[0]=str_replace("/", "\\/", $smilie[0]);
$msg=preg_replace("/(^|[^a-z0-9])".$smilie[0]."($|[^a-z0-9])/imx","$1<img src=$smilie[1] align=absmiddle>$2",$msg);



(edited by Parasyte + on 03-18-06 12:05 PM)
(edited by Parasyte + on 03-19-06 08:14 AM)
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-18-06 12:46 PM, in I want to change my smilies system... How ? Link
I've since updated the code in my last post. It had some errors. :X
Parasyte +

Red Paragoomba


 





Since: 01-05-06

Last post: 6645 days
Last view: 6645 days
Posted on 03-18-06 12:56 PM, in A good NES emulator... Link
Originally posted by legoman
Originally posted by Disch
Originally posted by piratepunk
if your tring to use FCU ultra or what ever its called to play smb1 than i suggest you dont use it cuz fcu has that world 0-1 glitch


That is not a glitch with FCEU, but a glitch in your ROM. Starting that bad ROM at level 0-1 is actually a sign of a good emu. I suggest you redownload a proper version of SMB.



I try play smb 1 in FCU ultra, but, game start in the level 0-1 but I usi virtual nes, and game start normaly in the 1-1 level


READ

Download a proper ROM and it will work in any emulator that supports it.
Pages: 1 2 3
Acmlm's Board - I3 Archive - - Posts by Parasyte +


ABII

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

Page rendered in 0.069 seconds; used 425.80 kB (max 531.70 kB)