Register | Login
Views: 19364387
Main | Memberlist | Active users | ACS | Commons | Calendar | Online users
Ranks | FAQ | Color Chart | Photo album | IRC Chat
11-02-05 12:59 PM
Acmlm's Board - I2 Archive - - Posts by Modereb
Pages: 1 2 3 4
User Post
Modereb

Paragoomba
Level: 15

Posts: 61/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 10-04-04 04:13 PM, in How big is too big? Link
I'm talking about this background: http://hypernova.amarok-shadow.com/MyStuff/acmlm/iybg.jpg, which is nearly 90 KB of its own already.

Oh yeah, I even saw someone using an 800 x 600 Sephiroth wallpaper just a few minutes ago, terrible...
Modereb

Paragoomba
Level: 15

Posts: 62/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 10-04-04 04:26 PM, in Always bashed it is: FF8. Link
I love FF8; don't understand why it's always being 'picked' on either...

I like it more than FF7 and FFX-2 for fuck's sake.
Modereb

Paragoomba
Level: 15

Posts: 63/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 10-04-04 04:31 PM, in FFX-2..o_o Link
Crap I hated this game...

The only thing I liked about it was the battle system (chain attacks and dressspheres, not a bad idea at all), and the only thing that keeped me playing was because I was thrilled-curious about Vegnagun, the almighty ancient sealed weapon. But yeah, I was dissapointed about that too when I beat the game...

What majorly annoyed me was the stupid behavior of the YRP; the dancing and extremely overdone girlish stuff. Fuck that annoyed the hell out of me numerious times throughout the game.

But worst of all....

THE MUSIC!

OMFG what horrible music throughout the entire game! There's not one theme at all I did like. I don't want stupid guitar solo-battle themes. Not to forget all themes were extremely short which made them awfully repetetive very fast.

I need good, fitting music in a game. Good music makes my games a lot better than they actually are. FFX-2's themes were simply horrible, all of them.

I regret having wasted my time on this game for about 2 hours per week, whenever I was bored.


(edited by Modereb on 10-04-04 07:32 AM)
Modereb

Paragoomba
Level: 15

Posts: 64/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 10-04-04 04:35 PM, in How many of you.... Link
It's not that hard when you know the 'tricks', such as opening your disc lid to skip an FMV (which matters a lot of time already).

I got it, but no, can't really say it's worth it, I had to miss a lot of other stuff to get it.

Definately not worth it.
Modereb

Paragoomba
Level: 15

Posts: 65/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 10-04-04 07:23 PM, in How big is too big? Link
Something a lot of people aren't aware of either is that you can set a compression ratio for JPG images, at least in more decent programs such as Photoshop and Paint Shop Pro.

In Hyperhacker's background's case, setting it to 25% compression already, without resizing it, makes it 61 KB. Which is already a 30 KB difference without any quality loss really. If it is a really sharp image having a low compression is good, but Hyperhacker's background image isn't quite something that needs that.
Modereb

Paragoomba
Level: 15

Posts: 66/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 10-05-04 05:28 AM, in Question Link
In config.php, add magic_quotes_runtime(0); on the second line (under the ). And post a few times to see if quotes and backslashes are still backslashed.

If that doesn't work, I guess you'll have to add stripslashes() to some files, which I can't exactly tell you since it's been over a half year since I last looked into AcmlmBoard source.

*aparantly it's been half a year since you wrote valid HTML too.... layout removed -erk*


(edited by Modereb on 10-04-04 08:59 PM)
(edited by Modereb on 10-04-04 09:11 PM)
(edited by ErkDog on 10-05-04 11:45 AM)
(edited by ErkDog on 10-05-04 11:46 AM)
Modereb

Paragoomba
Level: 15

Posts: 67/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 10-06-04 07:15 AM, in Select/Unselect all Link
Originally posted by neotransotaku
I believe it is related to DOM manipulation and you have to get a hold of all the checkboxes, and for each checkbox, you set it.

Although the following information is for Mozilla, the same approach works for IE:
Explanation of relationship between DOM and Javascript
DOM information from W3
You're been talking about the DOM in almost every JavaScript related thread lately but you rarely come up with an actually useful answer...

Anyway...


Checkbox 1
Checkbox 2
Checkbox 3




<form name="cboxform">
<input type="checkbox" name="cbox1" /> Checkbox 1
<input type="checkbox" name="cbox2" /> Checkbox 2
<input type="checkbox" name="cbox3" /> Checkbox 3
<input type="button" value="Select all" onclick="document.forms.cboxform.cbox1.checked=1; document.forms.cboxform.cbox2.checked=1; document.forms.cboxform.cbox3.checked=1;" />
<input type="button" value="Unselect all" onclick="document.forms.cboxform.cbox1.checked=0; document.forms.cboxform.cbox2.checked=0; document.forms.cboxform.cbox3.checked=0;" />
</form>
Modereb

Paragoomba
Level: 15

Posts: 68/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 10-14-04 04:21 AM, in Identifying IE? [Javascript] Link
Internet Explorer has 'MSIE x.x' (x.x being the version number, in my case, I see 'MSIE 6.0' in the string).

Also, I see you're using Javascript in PHP to get the client's User Agent, you can do it in PHP alone also...

<?
if( stristr(getenv("HTTP_USER_AGENT"),'MSIE') ){
header('location:redirect.php');
}
?>
Modereb

Paragoomba
Level: 15

Posts: 69/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 10-17-04 04:16 PM, in For the non-rom hackers: have you tried rom-hacking already? Link
I gave it a go with a Megaman 2 (NES) ROM long ago, I did edit the Megaman sprite and all but I screwed u the levels along with it as far as I remember.
Modereb

Paragoomba
Level: 15

Posts: 70/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 11-03-04 10:35 PM, in Working with <div> tags... Link
When reading the replies in this thread, it makes me wonder, have you people ever heard of the CSS float attribute, perhaps?
Modereb

Paragoomba
Level: 15

Posts: 71/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 11-04-04 12:43 PM, in Working with <div> tags... Link
Originally posted by Dylan
Originally posted by Modereb
When reading the replies in this thread, it makes me wonder, have you people ever heard of the CSS float attribute, perhaps?
Modereb

Paragoomba
Level: 15

Posts: 72/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 11-04-04 09:54 PM, in How to disable submit button? Link

<input type="button" onclick="this.disabled=1;" value="Test button" />

Modereb

Paragoomba
Level: 15

Posts: 73/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 11-05-04 02:59 AM, in How to disable submit button? Link
My example above is a button type input, but it should just submit normally if you use the onclick code in a submit type input. So, in other words, <input type="submit" /> instead of <input type="button" />.

Another way is to put it in the <form> tag's onsubmit attribute: <form onsubmit="form.button_that_needs_to_be_disabled.disabled=1;">.
Modereb

Paragoomba
Level: 15

Posts: 74/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 11-05-04 03:01 AM, in Need Flash MX help Link
Well Disch, I've been using computers and programming daily for years now, and I'm usually one to figure out programs right away, Flash MX majorly confused me when I first opened it, though; in fact, it still does.
Modereb

Paragoomba
Level: 15

Posts: 75/75
EXP: 14749
For next: 1635

Since: 06-04-04

Since last post: 350 days
Last activity: 339 days
Posted on 11-17-04 03:24 PM, in Search Bots - any way to block them? Link
Originally posted by ErkDog
here's the obvious soloution.....

get a webhosting provider that it's not an issue...

like

http://fiftypounds.com

45 gigs of bandwidth... who cares about 50 megs ??

but yes as far as the technical version....

robots.txt

or IP ban them... cause there are onlya bout 3 subnets that actively scan...

google only polls websites like once in forever

MSN and Inktomi (Yahoo) are CONSTANTLY in my guests table.....
The server or webhosting provider has NOTHING to do with the behavior of search bots in a webpage.

Recommended is that you tell search robots to cache your index page, but don't go any further. That way your site will show up on the robot's search engine eventually, but it won't go through all pages, such as thread pages.

Between your <head> tags, put the following:
<meta name="robots" content="index,nofollow" />
Pages: 1 2 3 4
Acmlm's Board - I2 Archive - - Posts by Modereb


ABII


AcmlmBoard vl.ol (11-01-05)
© 2000-2005 Acmlm, Emuz, et al



Page rendered in 0.029 seconds.