Jump to content
MakeWebGames

weewooz

Members
  • Posts

    258
  • Joined

  • Last visited

    Never

Everything posted by weewooz

  1. Re: [mccode v1] Punch Mod i dont any game mate at the mo did but alot of people spoil them now without the secruity well lets say game over and to be honest i dont have the time to secure any game right now of my own but i do know both version one and to bro so anything you need to just give a mail ill be happy to help once again great mod im just simply here to help
  2. Re: [mccode v1] Punch Mod yeah i know bro but give him a break abit at leat he is trying mate even if he changing lines of text more than i can say for most of the people on here mate but i know what ya mean at least he is trying add some thing wat looks diffo to orignal of hackpc bro
  3. Re: [mccode v1] Punch Mod yeah you have but sounds better than hackpc nice wording changed and your using a config file as well shows good coding bro maybe if you can maybe add it as users can only do it so many times aday coz the exp would get out of hand and they be levling all over the place in 24 hours cud ruin the game maybe write a cron in script and add the cron line or use timestamp just a idea i can do it but not guna do all the work for you mate hope you see as help and not im having ago bro up to you tho bro nice script
  4. Re: [mccode v1] Buy Items with Crystals yeah i know true but was reading through all ther posts killing some time lol
  5. Re: [mccodes V2] Bounty Hunter Game lets hope no one aks for vr1 lol alot of db q to change lol but some always does beside that great mod well done very nice work
  6. Re: !FREE ****Buy Items with Crystals****** FREE! does this even work lol so many of you moaning he posted it free he dint have to but does it work or will i need to mess with it and re post it when i got it working
  7. Re: [mccode v1] Chests ok well i leave that lot with you mate lol are you guna do this bro or wanna see added mate ?
  8. Re: [mccode v1] Chests well what ever its for i cant get cron to run for vr1 lol
  9. Re: [mccode v1] Chests did anyone work out a cron for this i have this which i thought wud work for vr1 mysql_query("UPDATE users SET keys=100",$c); in daysold but still no luck anyone know whats wrong here
  10. Re: [mod] Mcc Christmas Theme hows the files coming along i cant wait to have aplay around with this mate
  11. Re: ADDON For Burn Down Users House Vr1 lol iamwicked hows the website coming on had a look today looks very good
  12. Re: [mccode] item images i know lol but thats how i always it do i like to be diffo but for this i wil just for you :)
  13. Re: ADDON For Burn Down Users House Vr1 lol i wasnt around a year and half ago pn here but fair enough but alot do look the same killah and dont want to fight about it was made by me alot of people on here do fight about codes all im simply doing is offer my work mate to new users who are learning thats it and for any one who wants to take the code and advance it thats it mate im out of here
  14. Re: [mccode] item images Ive done a fair bit of editing with this and if it fine ill post it for vr1 if thats ok with you
  15. Ok here it is maybe been made before oryou may have it but here it goes What it does is when a users burns down your house if you have insurence which is this mods your time will be less then if you dont have it First add this in your cpanel into users table: insurance` int(11) NOT NULL default '0' Then Add This To Your Daily/Days Old Cron: mysql_query("UPDATE users SET insurance=insurance-1 WHERE insurance>0",$c); Then Here Are The 2 Scripts You Need: Name This getinsurance.php <?php session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); include "arson.config.php"; global $db_config; $in = abs((int) $_GET['ID']); $cost = $ir['level']*$db_config['insurance']; { print "<center><h3>House Insurance</h3> Your Currently have [b]{$ir['insurance']}[/b] Days of insurance cover left. Your weekly fee is: \${$cost} Get insurance? "; print "[url='gotinsurance.php']Yes.[/url] [url='index.php']No.[/url] "; } $h->endpage(); ?>   The Second Script Is This Nmae It gotinsurance.php <?php session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals'],''); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm,$cm); $h->menuarea(); include "arson.config.php"; global $db_config; $in = abs((int) $_GET['ID']); if(!$in) if($ir['insurance'] > 7) { print "<center><font color=red>[b]You can not buy more insurance until you have 7 days or less left on your current insurance policy.[/b]</font> <a href='index.php>Go Home</a></center>"; $h->endpage(); exit; } if($ir['money'] < $ir['level']*$db_config['insurance']) { print "<center><font color=red>[b]You do not have enough money. Come back when you have enough.[/b]</font> [url='index.php']Go Home[/url]</center>"; $h->endpage(); exit; } $cost= $ir['level']*$db_config['insurance']; { mysql_query("UPDATE users SET brave=brave-0 WHERE userid={$userid}", $c); $hosp = rand($db_config['minhosp'],$db_config['maxhosp']); { mysql_query("UPDATE users SET money=money-{$cost} WHERE userid=$userid", $c); mysql_query("UPDATE users SET insurance=insurance+7 WHERE userid=$userid", $c); } print "You have paid for an extra 7 days insurance."; } $h->endpage(); ?>   Fully Working And Tested Post What you All Think Im Out Of Here     Wrapped in [code] ... [/code] tags
  16. Re: Owner Panel V.2 very nice is this your own work if so credit to you mate
  17. Re: Owner Panel V.2 there as been a couple of owner pans with ccs i have one my self as for the code looks clean after imwicked cleaned the last bit up for you but the code looks new i cant say up to yet ive seen it any were so nice work
  18. Re: [V2] Give Money To Tramps EDITED can i just say this mod might get abit out of hand one then can keep getting will as much as they want but i know you can stop this but dont want to go in to much detail on how and anything mate the will will just keep increasing above 100 before you know useres cud have over 500 % in will i know these are very easy fixes but for newbies mayebe hard but never the less i like script bro ive edited it abit but nice simple litle code mate works good
  19. Re: Supporter V.2 I really dont mean to put you down mate and we all start some where but just make sure you post the full code i know this as been made before but just make sure you post the full code mate but dont be down try coding instead of copying that way you will learn alot more mate and im sure its fair to say alot of coders start of as copy coders by that i mean copy and paste but you would and will learn more by trying to write a few easyer scripts first share them with us and will on here as members will help you in anway we can mate good luck im out of here
  20. Re: Supporter V.2 wheres the rest of the code but anyways i wont use this as i think its a waste of time don is alot better why would you a second donation script to your game but as i say there is no sql and telling other members how to do this ie other bits you have missed out to add to other pages which i not got into detail as i cant be arsed but anyways im out of here
  21. Re: [mccode] item images this all works fine in vr1 but how would we add this to the shops.php so when you buy you can see the pictures not just in your inv.php thanks
  22. Re: Snak Attak [v2] vr1 dont work all i get is a white screen
  23. Re: Boat + Planks Mod [V2] nice mod man keep it up very nice someone will want version 1 next lol nice workk tho
  24. Re: Email Activation thats what we all stuck on here lol i dont ake sense mate as for you who posted 2 up from this what you onbout i can code just im letting him know he is not explaining it write to say people who are learning and who said i ran a game? not me so get ya facts right before you move your lips
  25. Re: Blow members minds with the ULTIMATE explore page this a waste of a apost your not adding anything free mate for users and it hard to make im not saying its crap or dont look good coz it does but new learners will not understand the html side of it or not no what to do with it i think this post should be moved some where else as its offering your advice or what to not the full script and what to do with it
×
×
  • Create New...