
Jesse60905
Members-
Posts
265 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by Jesse60905
-
Re: THIS OR THAT? Comic Myspace or SuperCountry? (I jus gotta see what ya like better lol. Ya better not say myspace =P)
-
Re: SPECIAL ATTACK Stoners
-
Re: Guess the next poster Yup =) Scarlet?
-
Re: Guess the next poster Nope. Jesse next?
-
Getting Rid of the 2.147 bil cap in MCcode
Jesse60905 replied to Arson's topic in General Discussion
Re: Getting Rid of the 2.147 bil cap in MCcode I play a game who will soon have to up their bigint amount again. The richest player has almost 1tril. It's getting to the point where it is not so weird for a player to pay 10mil+ for 1 crystal. -
Re: Guess the next poster Hmmm... What does this do... Scarlet next
-
Re: [mccode] Supporter Packs It looks like either your cases or funcs are messed up. A coder would need to look in your code to do it but if I were you I would just learn to code.
-
Re: Guess the next poster Yeah... Virini should be on soon :-D
-
Re: Creating crimes in V2 Same. I haven't bought any mods for my game yet because I went broke buying V1 and V2. Hopefully I will have some cash soon though...
-
Re: Guess the next poster Nope Virini?
-
Re: Creating crimes in V2 Thanks. And you're right. But there are also some people who get a illegal set of codes, get a free webhost, and set up the codes just to make a quick buck.Those are the times that people shouldn't bother.
-
Re: [Free] [v1] Profile Image Uploader V2 uploadpic.php <?php /*----------------------------------------------------- -- Isomerizer -- Copyright held 2007-2008 Isomerizer -- uploadpic.php -- converted to V2 by Jesse60905 -----------------------------------------------------*/ include "globals.php"; if($_FILES['imagefile']=="") { echo " Upload an Profile Image: <form name='imageuploader' method='post' action='uploadpic.php' enctype='multipart/form-data'> [i]Path of Image:[/i] <input type='file' name='imagefile'> <input type='submit' name='Submit' value='Upload Image'> </form> (Max 10000 file bytes , Must be file extention gif, jpg, jpeg, png, bmp....) (Images are resized to 150 x 150) "; } else { //Edit below for max bytes size of the pic $maxsize=50000000; if ($_FILES['imagefile']['size'] > $maxsize) { echo "Image to large <a href=uploadpic.php>Back</a>"; exit; } if ($_FILES['imagefile']['type'] == "image/gif" || "image/jpeg" || "images/jpeg" || "images/png" || "images/bmp"){ copy ($_FILES['imagefile']['tmp_name'], "profilepics/".$_FILES['imagefile']['name']) or die ("Could not copy, Make sure you have profilepics on your FTP"); $path='profilepics/'; $pic=$_FILES['imagefile']['name']; $picture=$path.$pic; $oldpic=$ir['display_pic']; $newpic=$picture; if ($newpic==$oldpic) { echo " Image already uploaded!"; exit; } $delete=@unlink($oldpic); if ($delete) { echo "Previous image deleted from system... "; } if (!$delete) { echo "No Previous image to be deleted... "; } $dataa=$_FILES['imagefile']['size']; $datab=$_FILES['imagefile']['type']; $datad=$_FILES['imagefile']['name']; echo "Old Image Location: $oldpic "; echo "New Image Location: $newpic "; echo "Image Uploaded"; echo " <u>Info:</u> Image Name: $datad Image Size: $dataa bytes Type: $datab"; echo " <a href=uploadpic.php>Back</a>"; $fileplace=$_FILES['imagefile']['name']; $db->query("UPDATE users SET display_pic='profilepics/$fileplace' WHERE userid=$userid",$c); } else { echo " "; echo "Could Not Copy, Wrong Filetype (".$_FILES['imagefile']['name'].") "; echo "Must be an image file extention gif, jpg, jpeg, png, bmp...."; echo " <a href=uploadpic.php>Back</a>"; } } $h->endpage(); ?> The rest should be the same.
-
Re: Creating crimes in V2 I posted it in my staff forums and my admins loved it. It helped alot with learning how to make crimes.
-
Re: Contact Staff Form [FREE] V2 converted properly: <?php include "globals.php"; if($_POST['go']) { $to = (int) $_POST['staff']; $_POST['text'] = strip_tags($_POST['text']); $msg = str_replace(array("\n"),array(" "),htmlentities($_POST['text'])); $db->query("INSERT INTO mail VALUES ('',0,$userid,$to,unix_timestamp(),'Staff contact form','$msg')",$c) or die(mysql_error()); print "Your mail to the selected staff member has been sent. Please allow 24 hours for a response to be returned. Thank You. "; } else { $q=mysql_query("SELECT * FROM users WHERE user_level > 1 ORDER BY user_level",$c); print "[b]Contact Staff[/b] <form action='cstaff.php' method='post'> Staff Member: <select name='staff'>"; while($z=mysql_fetch_array($q)) { print "<option value='{$z['userid']}'>{$z['username']}</option>"; } print "</select> Message to staff member: <textarea name='text' rows='7' cols='40'>Send a mail to the selected staff member</textarea> <input type='hidden' name='go' value='true'> <input type='submit' value='Send' /> </form>"; } $h->endpage(); ?> I am 99.9% sure that will work. I own both V1 and V2 so I convert often =)
-
Re: Help on marrage mod Well even though I hate to cry wolf. He probably got them from a "friend".
-
Re: Help with V2 Ok lets see. @UCC: I fixed it. @Michael: Bits of code. I have a job. Brad is one of my admins. He creates my banners and helps alot with my game. Thanks anyway =/
-
Re: Creating crimes in V2 Well it looks like I WAS off to a bad start =/. Luckily I learned some of the stuff needed.
-
I just got done making my game secure. I moved all the files (they were working on my sub-domain) and when I got them to my main domain and ran the installer. When I logged in I started getting small bits of text in random places. Could someone help me? I would rather do it over messenger as I would have to post entire codes and I don't want people to steal the codes.
-
Re: Guess the next poster Almost. Caleb?
-
Re: [Free] Password reset code The reason is is because in globals.php it has the "if['loggedin'] == 0" thing so by changing the top part to include globals.php you are making it do that. So that's why it won't work for globals.php. What you could do is make a new globals.php just for that page or just write headers for that page like those that are in V1 but w/e.
-
Re: Guess the next poster Wrong. Matt2k6?
-
Re: Emergency Broadcast System (Spam Thread) Noodles...
-
Re: Guess the next poster Ya got me =/ Caleb?
-
Re: Guess the next poster Virini?
-
Re: Awesome 1st step to email validation. Yeah lol.