weewooz
Members-
Posts
258 -
Joined
-
Last visited
Never
Content Type
Profiles
Forums
Events
Everything posted by weewooz
-
Re: Sell Your Gang VR1 you using my version 1 or the converted vr2 ?
-
Re: [Free] Log Suspicious Users any 1 converted this 2 vr yet or am i chasing a lost cause lol
-
mccode-v1 Stock Market. Working + Secured
weewooz replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Stock Market. Working + Secured its ok dawg sorry for sounding thick just players ask why it goes in to - its ok sorted looks fine now thanks mate great mod +1 bro well done -
mccode-v1 Stock Market. Working + Secured
weewooz replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Stock Market. Working + Secured testing again $3,000 - $3,000 + $50 ? Buy Or View how that risien then by 50 wen there both still same price mate any ideas on that to? -
mccode-v1 Stock Market. Working + Secured
weewooz replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Stock Market. Working + Secured ok mate well how will we get rid of - in sell now price coloum then mate simple? or alot to delete -
mccode-v1 Stock Market. Working + Secured
weewooz replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Stock Market. Working + Secured Stock Name Stock Orig Price Stock Now Price Price Change View testing dont buy $2,000 - $1,858 + $98 ? Buy Or View looks like that the cron is moving them but it starts now price in - cash any ideas thats what i ment -
mccode-v1 Stock Market. Working + Secured
weewooz replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Stock Market. Working + Secured ok there moving ok haunted but still shows them in - on the sell price ive got the cron added right mate any ideas -
mccode-v1 Stock Market. Working + Secured
weewooz replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Stock Market. Working + Secured sorry for last post i know its smenu not been very well head all over the place lol -
mccode-v1 Stock Market. Working + Secured
weewooz replied to Haunted Dawg's topic in Free Modifications
Re: [mccode v2] Stock Market. Working + Secured Stocks<hr /> -> Edit Stock -> Add Stock -> Delete Stock nice mod were do i add that ive tryed staff.php no joy -
Re: [mccode v2] Email Activation i know know old post but does any one have a working copy of this at all loads of pages but none of them work what as been posted thanks
-
Re: Mass Crystals give gangs thanks wolfie and yeah i should have yes i take the blame on that part
-
Re: Mass Crystals give gangs yes at last that post someradom is lostone aka lostone and yes i do have is perrmision to post it danny go ahead and ask we are great friends mate fire away ask him then when you get you answer make sure to post sorry i dontr why people bothere on here anymore i really dont full of people who think they can code put people down or moan all the time what is ce coming to oh wel lol theres my moan
-
Re: Mass Crystals give gangs lol danny ive edited it look at script more closer you will see that post as errors ive fixed it up
-
This will aloow users To Lose There jobs i thought i would post but please no moaning about saying i aint wriitin it its a free mod i took it off my old game files and wrote everything on there Ok Insert into your sql ALTER TABLE users ADD strikes INT(11) NOT NULL DEFAULT '0'; Then in authenticate.php find header("Location: loggedin.php"); add above $db->query("UPDATE users SET strikes=0 WHERE userid={$mem['userid']}"); Add This To Your Cron Day if($ir['strikes'] == 3) { $db->query("UPDATE users SET jobs=0, jobrank=0"); } Add This Also To Your cRon Day $db->query("UPDATE users SET strikes=strikes+1 WHERE strikes < 3"); in job.php Find if($ir['strength'] >= $r['jrSTRN'] && $ir['labour'] >= $r['jrLABOURN'] && $ir['IQ'] >= $r['jrIQN']) { $db->query("UPDATE users SET job={$_GET['interview']},jobrank={$r['jrID']} WHERE userid=$userid;"); print "{$r['jOWNER']}: Okay {$ir['username']}, we're good to go, see you tomorrow. {$ir['username']}: Thanks! [/url]"; } else { print "{$r['jOWNER']}: Sorry {$ir['username']}, you're not far enough in the game to work in this job. You'll need:"; if($ir['strength'] < $r['jrSTRN']) { $s=$r['jrSTRN']-$ir['strength']; print " $s more strength, "; } if($ir['labour'] < $r['jrLABOURN']) { $s=$r['jrLABOURN']-$ir['labour']; print " $s more labour, "; } if($ir['IQ'] < $r['jrIQN']) { $s=$r['jrIQN']-$ir['IQ']; print " $s more IQ, "; } print "before you'll be able to work here! "; } } } replace with $code=rand(0,20); if($ir['strikes'] >=3 && $code==10) { if($ir['strength'] >= $r['jrSTRN'] && $ir['labour'] >= $r['jrLABOURN'] && $ir['IQ'] >= $r['jrIQN']) { $db->query("UPDATE users SET job={$_GET['interview']},jobrank={$r['jrID']} WHERE userid=$userid;"); print "{$r['jOWNER']}: Okay {$ir['username']}, we're good to go, see you tomorrow. {$ir['username']}: Thanks! "; } else { print "{$r['jOWNER']}: Sorry {$ir['username']}, You can not get a job today try again tomorrow."; $h->endpage(); exit; } } else if($ir['strikes'] <=2 && $code !=10) { if($ir['strength'] >= $r['jrSTRN'] && $ir['labour'] >= $r['jrLABOURN'] && $ir['IQ'] >= $r['jrIQN']) { $db->query("UPDATE users SET job={$_GET['interview']},jobrank={$r['jrID']} WHERE userid=$userid;"); print "{$r['jOWNER']}: Okay {$ir['username']}, we're good to go, see you tomorrow. {$ir['username']}: Thanks! "; } else { print "{$r['jOWNER']}: Sorry {$ir['username']}, you're not far enough in the game to work in this job. You'll need:"; if($ir['strength'] < $r['jrSTRN']) { $s=$r['jrSTRN']-$ir['strength']; print " $s more strength, "; } if($ir['labour'] < $r['jrLABOURN']) { $s=$r['jrLABOURN']-$ir['labour']; print " $s more labour, "; } if($ir['IQ'] < $r['jrIQN']) { $s=$r['jrIQN']-$ir['IQ']; print " $s more IQ, "; } print "before you'll be able to work here! "; } } } } Still In Job.php Find function job_index() { global $db, $ir,$c,$userid,$h; print "<h3>Your Job</h3> You currently work in the {$ir['jNAME']}! You receive \${$ir['jrPAY']} each day at 5pm! You also receive {$ir['jrIQG']} IQ, {$ir['jrSTRG']} strength, and {$ir['jrLABOURG']} labour! <table width=50% cellspacing=1 class='table'><tr><td>Strength: {$ir['strength']}</td><td>IQ: {$ir['IQ']}</td></tr><tr><td>Labour: {$ir['labour']}</td><td>Job Rank: {$ir['jrNAME']}</td></tr></table> Job Ranks <table width=75% cellspacing=1 class='table'><tr style='background:gray'><th>Title</th><th>Pay</th><th>Strength Reqd</th><th>IQ Reqd</th><th>Labour Reqd</th><th>Labour Reqd</th></tr>"; $q=$db->query("SELECT * FROM jobranks WHERE jrJOB={$ir['job']} ORDER BY jrPAY ASC;"); while($r=$db->fetch_row($q)) { print "<tr><td>{$r['jrNAME']}</td><td>\${$r['jrPAY']}</td><td>{$r['jrSTRN']}</td><td>{$r['jrIQN']}</td><td>{$r['jrLABOURN']}</td></tr>"; } print "</table> > Try To Get Promoted > Quit"; } replace with function job_index() { global $db, $ir,$c,$userid,$h; print "<h3>Your Job</h3> You currently work in the {$ir['jNAME']}! You receive \${$ir['jrPAY']} each day at 5pm! You also receive {$ir['jrIQG']} IQ, {$ir['jrSTRG']} strength, and {$ir['jrLABOURG']} labour! <table width=50% cellspacing=1 class='table'><tr><td>Strength: {$ir['strength']}</td><td>IQ: {$ir['IQ']}</td></tr><tr><td>Labour: {$ir['labour']}</td><td>Job Rank: {$ir['jrNAME']}</td></tr></table> Job Ranks <table width=75% cellspacing=1 class='table'><tr style='background:gray'><th>Title</th><th>Pay</th><th>Strength Reqd</th><th>IQ Reqd</th><th>Labour Reqd</th><th>Total Strikes</th></tr>"; $q=$db->query("SELECT * FROM jobranks WHERE jrJOB={$ir['job']} ORDER BY jrPAY ASC;"); while($r=$db->fetch_row($q)) { print "<tr><td>{$r['jrNAME']}</td><td>\${$r['jrPAY']}</td><td>{$r['jrSTRN']}</td><td>{$r['jrIQN']}</td><td>{$r['jrLABOURN']}</td><td>{$ir['strikes']}</td></tr>"; } print "</table> > Try To Get Promoted > Quit"; } Any Errors Please Post
-
Re: New type of Crimes!! function conf_cop_level() { global $ir,$c,$userid,$h; if($ir['coplevel'] == "Good Cop") { $cl="Bad Cop"; } else { $cl="Good Cop"; } print "Are you sure you want to become a $cl? Yes | No"; } function do_cop_level() { global $db,$ir,$c,$userid,$h; if($ir['coplevel'] == "Good Cop") { $cl="Bad Cop"; } else { $cl="Good Cop"; } $db->query("UPDATE users SET coplevel='$cl' WHERE userid=$userid"); print "Success, you are now $cl! Back"; } add that into yourprfes.php file mate then it will work
-
how would i stop users from using auto refresh websites out there from access pages one users keeps auto refreshing is invetory and other pages any help thanks gym and and that are secure but dont want to add captcha to every page and other ways out there thanks
-
Re: Mass Crystals give gangs your right i did of a text doc on my desktop which i put it on to make sure it was spaced out right man dont no why people bother on here susposed to be free people always moan dont use your choice god man just chill
-
Re: promo code sorry so yeah have lol sorry danny yeah what danny said haha :)
-
This Lets Gang Owners Send A Mass Payment In Crystals As Well As Money.Some One asked For This So I Posted Mayebe Already Been Done 99.9% Stuff On Here Always As Open YourGang.php Find. Code: [select] Mass Payment Replace With. Code: [select] Mass Payment(Money) Mass Payment(Crystals) Next Find Code: [select] case "masspayment": gang_staff_masspayment(); break; Add Under Code: [select] case "masspaymentcry": gang_staff_masspaymentcry(); break; Then Find Code: [select] function gang_staff_masspayment() { global $db,$ir,$c,$userid,$gangdata; $_POST['amnt']=abs((int) $_POST['amnt']); if($_POST['amnt']) { $q=$db->query("SELECT * FROM users WHERE gang={$ir['gang']}"); while($r=$db->fetch_row($q)) { if($gangdata['gangMONEY'] >= $_POST['amnt']) { event_add($r['userid'],"You were given \${$_POST['amnt']} from your gang.",$c); $db->query("UPDATE users SET money=money+{$_POST['amnt']} WHERE userid={$r['userid']}", $c); $gangdata['gangMONEY']-=$_POST['amnt']; print "Money sent to {$r['username']}. "; } else { print "Not enough in the vault to pay {$r['username']}! "; } } $db->query("UPDATE gangs SET gangMONEY={$gangdata['gangMONEY']}, gang WHERE gangID={$ir['gang']}", $c); $db->query("INSERT INTO gangevents VALUES('',{$ir['gang']},unix_timestamp(), 'A mass payment of \${$_POST['amnt']} was sent to the members of the Gang.')"); print "Mass payment sending complete! > Back"; } else { print "Mass Payment <form action='yourgang.php?action=staff&act2=masspayment' method='post'> Amount: <input type='text' name='amnt' /> <input type='submit' value='Send' /></form>"; } } And Under Code: [select] function gang_staff_masspaymentcry() { global $db,$ir,$c,$userid,$gangdata; $_POST['amnt']=abs((int) $_POST['amnt']); if($_POST['amnt']) { $q=$db->query("SELECT * FROM users WHERE gang={$ir['gang']}"); while($r=$db->fetch_row($q)) { if($gangdata['gangCRYSTALS'] >= $_POST['amnt']) { event_add($r['userid'],"You were given {$_POST['amnt']} crystals from your gang.",$c); $db->query("UPDATE users SET crystals=crystals+{$_POST['amnt']} WHERE userid={$r['userid']}", $c); $gangdata['gangCRYSTALS']-=$_POST['amnt']; print "Crystals sent to {$r['username']}. "; } else { print "Not enough in the vault to pay {$r['username']}! "; } } $db->query("UPDATE gangs SET gangCRYSTALS={$gangdata['gangCRYSTALS']} WHERE gangID={$ir['gang']}", $c); $db->query("INSERT INTO gangevents VALUES('',{$ir['gang']},unix_timestamp(), 'A mass payment of {$_POST['amnt']} crystals was sent to the members of the Gang.')"); print "Mass payment sending complete! > Back"; } else { print "Mass Payment(Crystals) <form action='yourgang.php?action=staff&act2=masspaymentcry' method='post'> Amount: <input type='text' name='amnt' /> <input type='submit' value='Send' /></form>"; } } Then Find Code: [select] { print "Mass Payment <form action='yourgang.php?action=staff&act2=masspayment' method='post'> Amount: <input type='text' name='amnt' /> <input type='submit' value='Send' /></form>"; } } Replace with Code: [select] { print "Mass Payment (Money) <form action='yourgang.php?action=staff&act2=masspayment' method='post'> Amount: <input type='text' name='amnt' /> <input type='submit' value='Send' /></form>"; } }
-
Re: promo code find in register.php if($_POST['promo'] == "PromoCode") and replace PromoCodes with the code of your choice like what ever you want them to enter as promo code then look through ya registers see who as singed up with the promo code you set and credit them
-
Re: [V2] Attacking Turns Shop sorry what dont matter ty anyways codes often end like this on here not finished lol although its a good mod ill correct myself
-
Re: [V2] Attacking Turns Shop so what works and what done lol did the first post get updated sniko mate or?
-
Re: [mccode v2] Monster Tent never mind i did fix that but whole thing dont really work ya cant edit a monster oh well peace out
-
Re: [mccode v2] Monster Tent sorry to bring up such a old post but this dont even show them in the monster tent it only shows one like the battle tent any ideas anyone ty
-
Re: Game Station mod dont worry old post revied lol my bad nice mod mate