Djkanna Posted December 3, 2011 Posted December 3, 2011 ...I took a quick look at the code, and the forum software switch-over messed the code up too, for instance, a html image tag was converted into BB image tag. And that. (@Peterisgb) So don't blame the creator. Quote
peterisgb Posted December 4, 2011 Posted December 4, 2011 And that. (@Peterisgb) So don't blame the creator. dont worry, i dont blame the creator, i blame this site and its stupid change thingy that messed all the codes Quote
Dominion Posted December 4, 2011 Posted December 4, 2011 dont worry, i dont blame the creator, i blame this site and its stupid change thingy that messed all the codes http://makewebgames.io/showthread.php/39536-How-To-Fix-Parse-error-syntax-error-unexpected-T_STRING-in-...........-on-line-... Have fun. I'm sure your html skills are enough to fix 90% of the problems. Quote
Uridium Posted December 5, 2011 Author Posted December 5, 2011 I still have the script for this however i dont have all the door images I will amend the script for future use... Quote
Uridium Posted December 5, 2011 Author Posted December 5, 2011 you can create your own images to cover tthe doors each image should be about 100 x 100 then just do your maths with the co-ords on windows paint if(!$ir['frame1'] !=1) { imagecopymerge_alpha($img_a, $img_b, 25,25,0,0, imagesx($img_b), imagesy($img_b), 50); } if(!$ir['frame2'] !=1) { imagecopymerge_alpha($img_a, $img_c, 401, 402, 0, 0, imagesx($img_c), imagesy($img_c), 50); } if(!$ir['frame3'] !=1) { imagecopymerge_alpha($img_a, $img_d, 25, 405, 0, 0, imagesx($img_d), imagesy($img_d), 50); } if(!$ir['frame4'] !=1) { imagecopymerge_alpha($img_a, $img_e, 400, 305, 0, 0, imagesx($img_e), imagesy($img_e), 50); } if(!$ir['frame5'] !=1) { imagecopymerge_alpha($img_a, $img_f, 104, 200, 0, 0, imagesx($img_f), imagesy($img_f), 50); } if(!$ir['frame6'] !=1) { imagecopymerge_alpha($img_a, $img_g, 402, 103, 0, 0, imagesx($img_g), imagesy($img_g), 50); } if(!$ir['frame7'] !=1) { imagecopymerge_alpha($img_a, $img_h, 25, 100, 0, 0, imagesx($img_h), imagesy($img_h), 50); } if(!$ir['frame8'] !=1) { imagecopymerge_alpha($img_a, $img_i, 200, 200, 0, 0, imagesx($img_i), imagesy($img_i), 50); } if(!$ir['frame9'] !=1) { imagecopymerge_alpha($img_a, $img_j, 103, 100, 0, 0, imagesx($img_j), imagesy($img_j), 50); } if(!$ir['frame10'] !=1) { imagecopymerge_alpha($img_a, $img_k, 104,300,0,0, imagesx($img_k), imagesy($img_k), 50); } if(!$ir['frame11'] !=1) { imagecopymerge_alpha($img_a, $img_l, 200, 100, 0, 0, imagesx($img_l), imagesy($img_l), 50); } if(!$ir['frame12'] !=1) { imagecopymerge_alpha($img_a, $img_m, 200, 400, 0, 0, imagesx($img_m), imagesy($img_m), 50); } if(!$ir['frame13'] !=1) { imagecopymerge_alpha($img_a, $img_n, 301, 300, 0, 0, imagesx($img_n), imagesy($img_n), 50); } if(!$ir['frame14'] !=1) { imagecopymerge_alpha($img_a, $img_o, 100, 25, 0, 0, imagesx($img_o), imagesy($img_o), 50); } if(!$ir['frame15'] !=1) { imagecopymerge_alpha($img_a, $img_p, 301, 200, 0, 0, imagesx($img_p), imagesy($img_p), 50); } if(!$ir['frame16'] !=1) { imagecopymerge_alpha($img_a, $img_q, 402, 25, 0, 0, imagesx($img_q), imagesy($img_q), 50); } if(!$ir['frame17'] !=1) { imagecopymerge_alpha($img_a, $img_r, 401, 202, 0, 0, imagesx($img_r), imagesy($img_r), 50); } if(!$ir['frame18'] !=1) { imagecopymerge_alpha($img_a, $img_s, 300, 400, 0, 0, imagesx($img_s), imagesy($img_s), 50); } if(!$ir['frame19'] !=1) { imagecopymerge_alpha($img_a, $img_t, 200, 25, 0, 0, imagesx($img_t), imagesy($img_t), 50); } if(!$ir['frame20'] !=1) { imagecopymerge_alpha($img_a, $img_u, 200, 300, 0, 0, imagesx($img_u), imagesy($img_u), 50); } if(!$ir['frame21'] !=1) { imagecopymerge_alpha($img_a, $img_v, 300, 25, 0, 0, imagesx($img_v), imagesy($img_v), 50); } if(!$ir['frame22'] !=1) { imagecopymerge_alpha($img_a, $img_w, 25, 300, 0, 0, imagesx($img_w), imagesy($img_w), 50); } if(!$ir['frame23'] !=1) { imagecopymerge_alpha($img_a, $img_x, 25, 200, 0, 0, imagesx($img_x), imagesy($img_x), 50); } if(!$ir['frame24'] !=1) { imagecopymerge_alpha($img_a, $img_y, 301, 100, 0, 0, imagesx($img_y), imagesy($img_y), 50); } if(!$ir['frame25'] !=1) { imagecopymerge_alpha($img_a, $img_z, 0, 0, 0, 0, imagesx($img_z), imagesy($img_z), 50); } Quote
Uridium Posted December 5, 2011 Author Posted December 5, 2011 I suppose adding a cron for each door date would help if the cron dont match the sql for the door date then that door cant be opened Quote
Dave Posted December 5, 2011 Posted December 5, 2011 I suppose adding a cron for each door date would help if the cron dont match the sql for the door date then that door cant be opened Or simply check the timestamped date against the server? So make sure only the doors prior to the current date open. Not all to hard. Quote
Uridium Posted December 6, 2012 Author Posted December 6, 2012 I know this is an old Thread but does anyone still have the images i made for this mod id like to revitalise it somewhat,,,, Quote
AnonymousUser Posted December 7, 2012 Posted December 7, 2012 dangit i thought i had them, they must be on my old computer if i find them ill send ya a mail Quote
lucky3809 Posted December 8, 2012 Posted December 8, 2012 I had the pictures, but it's finding what disk i saved them on lol. You will be better off finding new ones, before I find them though lolz.. Quote
Uridium Posted November 3, 2013 Author Posted November 3, 2013 Getting back to this topic yet again ive decided to Revamp and recreate some of it now that im able to expand on better ideas and code Quote
munchbunch00 Posted November 3, 2013 Posted November 3, 2013 Sounds like a great mod, would love to see this be revamped. Good luck pal :) Munchbunch, Quote
Smokey Posted November 16, 2013 Posted November 16, 2013 Does anyone have the images for this still? Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.