
hamster01
Members-
Posts
1,108 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by hamster01
-
Re: Tell A Friend Where did you get this script? Because I can see whoever coded this is still very new to arrays and if statements.
-
Re: Guess the next poster How can you be so sure of that? Eyes(aka Scarlet) next.., maybe.. or it could be someone else. There is a 1:3609 chance that I am indeed correct.
-
[Free] [v1] User Verification [Captcha]
hamster01 replied to Isomerizer's topic in Free Modifications
Re: [Free] [v1] User Verification [Captcha] Google offers great tutorials on these things. http://www.codewalkers.com/c/a/Miscella ... ith-PHP/4/ This way would be more secure aswell, because even I can fool this captcha. javascript: document.forms[0].hiddenvalue=""; and I will bypass the captcha, or I could just goto the gym.php page. d: -
[Free] [v1] User Verification [Captcha]
hamster01 replied to Isomerizer's topic in Free Modifications
Re: [Free] [v1] User Verification [Captcha] I have created quite a few gd scripts in my day.. You do not have the lib to run php gd images. And I am pretty sure you cannot run the script as Isomerizer posted. The 'correct' way is the send headers with the script, to show it is a 'valid' image. -
Re: Guess the next poster Someone in a specific point in space.
-
Re: [v1] Maximum Users Online Counter No problem Isomerizer. As it's free code, You may do as you wish with it. I made this modification! I lent it to oxi.. :roll: Your very funny .. Ferdi .. :P [He never made it, If your looking for FerdiMods - Try a Hardcore Warez site] :wink: .. {Joke} You will have to look in the archives..
-
[Free] [v1] User Verification [Captcha]
hamster01 replied to Isomerizer's topic in Free Modifications
Re: [Free] [v1] User Verification [Captcha] underscore with it, sorry. <? gd_info(); ?> -
Re: [v1] Maximum Users Online Counter No problem Isomerizer. As it's free code, You may do as you wish with it. I made this modification! I lent it to oxi.. :roll:
-
[Free] [v1] User Verification [Captcha]
hamster01 replied to Isomerizer's topic in Free Modifications
Re: [Free] [v1] User Verification [Captcha] What does the following produce: <? gdinfo(); ?> -
Re: Game owners sending out referal link. Or create a script to show it. <? echo $_SERVER['HTTP_HOST']; ?>
-
Well, there has been many debates about this. although scientists has proven that old music is better than new music, I like the new techno, but most of the songs originate from the 60-90's. Take for instace, Drunken Monkey - Calibra vs. Europe - The Final Countdown I like europe's song more, it just sounds better, compared to the original calibra. Yea, okay, sure the remix of calibra is waaayy better than the original. What kind of music do you prefer? Old, or New.
-
Re: Guess the next poster I don't know.
-
Re: Here Some Joke I know some other jokes, but the little ones are here. ):
-
Re: Optimising Brave Update Oh, I thought It would work, since it sends the data to the mysql server. Hmm..
-
Re: Optimising Brave Update Or try and do this; <?php include "mysql.php"; mysql_query("UPDATE users SET brave=brave+((maxbrave/10)+0.5) WHERE brave<maxbrave;UPDATE users SET brave=maxbrave WHERE brave>maxbrave;UPDATE users SET hp=hp+(maxhp/3) WHERE hp<maxhp;UPDATE users SET hp=maxhp WHERE hp>maxhp"); ?> But be sure your Mysql delimiter is ; This can be checked by typeing the following into your mysql command prompt: \s The result: mysql> \s -------------- c:/***/mysql.exe Ver 14.12 Distrib 5.0.37, for Win32 (ia32) Connection id: 3384 Current database: Current user: admin@**** SSL: Not in use Using delimiter: ;
-
Re: Guess the next poster Someone on this list.
-
Re: Here Some Joke Here's one.. How do you know when a woman is about to say a smart thing? She begins here sentence with "A man once told me". What's black and blue an sits in a dark corner? The five-year old in my closet.
-
Re: Default money kk i noticed youve done it anywyas but im going to post how to do it anyways 1.you go into you phpmyadmin 2.click users 3.then click money and edit it 4.now where it says Default change (100) to (how ever much you want) i hope this is clear. lol, no. You edit the insert query on the register page.
-
Re: I need a little database help Well, I read a bit bout this on google. :) A few things you could try: Closing the connection at end of script. Ompitmizing MCCodes.(lol) The users, as your host said.
-
Re: MCCODES + Graphic I believe it is done with CSS. body { background: url(image.png); repeat: none; }
-
Re: iBusinessPromoter Because why the hell would eBay have it? They are already top ten in worldwide.
-
Re: F.A.Q. <style type="text/css"> p { text-decoration: underline; } </style> This is underlined text.</p>
-
Re: [mccode] Annoucement Mod In proper grammar please! Heh. I was going to sell it at around $15.00 which would have easily sold, but what the heck just take it :wink: It's only an annoucements mod. Basicly something free which has taken a LOT of time. :roll: No it did not. :-o :lol:
-
Re: F.A.Q. And how would I make it so the code is [u*][/*u] when clicking underline, sorry if its a stupid question. http://www.google.com/search?q=BBCode%20Engines
-
Re: F.A.Q. How to change backgrounds and text when in hospital and jail? <?php if ($ir['hospital'] >= 1) { echo '<style type="text"css"> body { background: #FFF; color: #FF0000; }</style>'; } else if ($ir['jail'] >= 1) { echo '<style type="text"css"> body { background: #333; color: #FFF; }</style>'; } ?> 2. Javascript. function add_code(code,id) { var element = document.getElementById(id); element.value += code; }