Jump to content
MakeWebGames

GregFest

Members
  • Posts

    98
  • Joined

  • Last visited

Everything posted by GregFest

  1. Number one error they all dont work but the energy refill, when trying to use ie crystals it says i dont got any   <?php /* Engine: MC V2.5 (Redux) File: exchange.php Author: mccodes.com */ if ( !defined($_CONFIG['define_code']) ) { echo 'This file cannot be accessed directly.'; exit; } if(!$_GET['spend']) { echo "Welcome to the exchange!<br /> You have <b>{$ir['second']}</b> ".$set['second_currency'].".<br /> What would you like to spend your ".$set['second_currency']." on?<br /> <br /> <a href='".gen_url('exchange',true)."&spend=refill'>Energy Refill - {$set['ct_refillprice']} ".$set['second_currency']."</a><br /> <a href='".gen_url('exchange',true)."&spend=IQ'>IQ - {$set['ct_iqpercrys']} IQ per ".substr($set['second_currency'], 0, -1)."</a><br /> <a href='".gen_url('exchange',true)."&spend=main'>".$set['main_currency']." - \$".number_format($set['ct_moneypercrys'])." per ".substr($set['second_currency'], 0, -1)."</a><br />"; } else { if($_GET['spend'] == 'refill') { if($ir['second'] <$set['ct_refillprice']) { echo "You don't have enough ".$set['second_currency']."!"; } else if($ir['energy'] == $ir['maxenergy']) { echo "You already have full energy."; } else { $db->query("UPDATE users SET energy=maxenergy,`second` = `second`-{$set['ct_refillprice']} WHERE userid=$userid"); echo "You have paid {$set['ct_refillprice']} ".$set['second_currency']." to refill your energy bar."; } } else if($_GET['spend'] == 'IQ') { echo "Type in the amount of ".$set['second_currency']." you want to swap for IQ.<br /> You have <b>{$ir['second']}</b> ".$set['second_currency'].".<br /> One ".substr($set['second_currency'], 0, -1)." = {$set['ct_iqpercrys']} IQ.<form action='".gen_url('exchange',true)."&spend=IQ2' method='post'><input type='text' name='".$set['second_currency']."' /><br /><input type='submit' value='Swap' /></form>"; } else if($_GET['spend'] == 'IQ2') { $_POST[$set['second_currency']]=(int) $_POST[$set['second_currency']]; if($_POST[$set['second_currency']] <= 0 || $_POST[$set['second_currency']] > $ir['second']) { echo "Error, you either do not have enough ".$set['second_currency']." or did not fill out the form.<br /> <a href='".gen_url('exchange',true)."&spend=IQ'>Back</a>"; } else { $iqgain=$_POST[$set['second_currency']]*$set['ct_iqpercrys']; $db->query("UPDATE users SET `second` = `second`-{$_POST[$set['second_currency']]} WHERE userid=$userid"); $db->query("UPDATE userstats SET IQ=IQ+$iqgain WHERE userid=$userid"); echo "You traded {$_POST[$set['second_currency']]} ".$set['second_currency']." for $iqgain IQ."; } } else if($_GET['spend'] == 'main') { echo "Type in the amount of ".$set['second_currency']." you want to swap for ".$set['main_currency'].".<br /> You have <b>{$ir['second']}</b> ".$set['second_currency'].".<br /> One ".substr($set['second_currency'], 0, -1)." = \$".number_format($set['ct_moneypercrys']).".<form action='".gen_url('exchange',true)."&spend=main2' method='post'><input type='text' name='".$set['second_currency']."' /><br /><input type='submit' value='Swap' /></form>"; } else if($_GET['spend'] == 'main2') { $_POST[$set['second_currency']]=(int) $_POST[$set['second_currency']]; if($_POST[$set['second_currency']] <= 0 || $_POST[$set['second_currency']] > $ir['second']) { echo "Error, you either do not have enough ".$set['second_currency']." or did not fill out the form.<br /> <a href='".gen_url('exchange',true)."&spend=main'>Back</a>"; } else { $iqgain=$_POST[$set['second_currency']]*$set['ct_moneypercrys']; $db->query("UPDATE users SET `second` = `second`-{$_POST[$set['second_currency']]},`main` = `main`+$iqgain WHERE userid=$userid"); echo "You traded {$_POST[$set['second_currency']]} ".$set['second_currency']." for \$".number_format($iqgain)."."; } } } $h->endpage(); ?>
  2. any ideas on this anyone i am at a stand still
  3. thanks mind is a blank
  4. <?php /* Engine: MC V2.5 (Redux) File: battletent.php Author: mccodes.com */ if ( !defined($_CONFIG['define_code']) ) { echo 'This file cannot be accessed directly.'; exit; } echo "<h3>Battle Arena</h3> <b>Welcome to the battle arena! Here you can challenge NPCs for ".$set['main_currency'].".</b> <table width=100% cellspacing=1 class='table'><tr style='background: gray; '> <th>Bot Name</th> <th>Level</th> <th>Times Owned</th> <th>Ready To Be Challenged?</th> <th>Location</th> <th>".$set['main_currency']." Won</th> <th>Challenge</th></tr>"; $q=$db->query("SELECT cb.*,u.*,c.npcid,cy.cityname FROM challengebots cb LEFT JOIN users u ON cb.cb_npcid=u.userid LEFT JOIN challengesbeaten c ON c.npcid=u.userid AND c.userid=$userid LEFT JOIN cities cy ON u.location=cy.cityid"); while($r=$db->fetch_row($q)) { $earn=$r['cb_money']; $v=$r['userid']; $q2=$db->query("SELECT count(*) FROM challengesbeaten WHERE npcid=$userid"); $times=$db->fetch_single($q2); echo "<tr><td>{$r['username']}</td><td>{$r['level']}</td><td>$times</td><td>"; if($r['hp'] >= $r['maxhp']/2 and $r['location']==$ir['location'] and !$ir['hospital'] and !$ir['jail'] and !$r['hospital'] and !$r['jail']) { echo "<font color=green>Yes</font>"; } else { echo "<font color=red>No</font>"; } echo "</td><td>{$r['cityname']}</td><td>$earn</td><td>"; if($r['npcid']) { echo "<i>Already</i>"; } else { echo "<a href='".gen_url('attack',true)."&ID={$r['userid']}'>Challenge</a>"; } echo "</td></tr>"; } echo "</table>"; $h->endpage(); ?>   how to make it so it orders by levels
  5. thats it thanks man
  6. function edit_item_begin() { global $db,$ir,$c,$h,$userid; if ( in_array($ir['user_level'],array(0,1,4,5,6,8)) ) { echo 'You cannot access this area.<br />> <a href="'.gen_url('main',true,true).'">Goto Main</a>'; die($h->endpage()); } echo " <h3>Editing Item</h3> You can edit any aspect of this item.<br /> <form action='".gen_url('items',true,true)."&action=edititemform' method='post'> Item: ".item_dropdown($c,'item')." <br /> <input type='submit' value='Edit Item' /> </form> "; } function edit_item_form() { global $db,$ir,$c,$h; if ( in_array($ir['user_level'],array(0,1,4,5,6,8)) ) { echo 'You cannot access this area.<br />> <a href="'.gen_url('main',true,true).'">Goto Main</a>'; die($h->endpage()); } $_POST['item'] = ( isset($_POST['item'])&&is_numeric($_POST['item']) )?abs(intval($_POST['item'])):''; if ( empty($_POST['item']) ) { echo 'Invalid Item.<br />> <a href="'.gen_url('main',true,true).'">Goto Main</a>'; die($h->endpage()); } $d = $db->query("SELECT`itmsellprice`,`itmbuyprice`,`itmbuyable`,`itmtype`,`itmdesc`,`itmname`,`effect1_on`,`effect1`,`effect2_on`,`effect2`,`effect3_on`,`effect3`,`weapon`,`armor` FROM `items` WHERE `itmid` = {$_POST['item']}"); if ( $db->num_rows($d) == 0 ) { echo 'Item doesn\'t seem to exist.<br />> <a href="'.gen_url('items',true,true).'&action=edititem">Go Back</a>'; die($h->endpage()); } $itemi = $db->fetch_row($d); $itmname = ( isset($_POST['itmname'])&&preg_match("/^[a-z0-9_]+([\\s]{1}[a-z0-9_]|[a-z0-9_])+$/i", $_POST['itmname']) )?strip_tags($db->escape($_POST['itmname'])):''; $itmdesc = ( isset($_POST['itmdesc']) )?strip_tags($db->escape($_POST['itmdesc'])):''; $weapon = ( isset($_POST['weapon'])&&is_numeric($_POST['weapon']) )?abs(intval($_POST['weapon'])):''; $armor = ( isset($_POST['armor'])&&is_numeric($_POST['armor']) )?abs(intval($_POST['armor'])):''; echo " <h3>Editing Item</h3> <form action='".gen_url('items',true,true)."&action=edititemsub' method='post'> <input type='hidden' name='itmid' value='{$_POST['item']}' /> Item Name: <input type='text' name='itmname' value='{$itemi['itmname']}' /> <br /> Item Desc.: <input type='text' name='itmdesc' value='{$itemi['itmdesc']}' /> <br /> Item Type: ".itemtype_dropdown($c,'itmtype',$itemi['itmtype'])." <br /> Item Buyable: <input type='checkbox' name='itmbuyable' "; echo ( $itemi['itmbuyable'] )?"checked='checked'":''; echo " /> <br /> Item Price: <input type='text' name='itmbuyprice' value='{$itemi['itmbuyprice']}' /> <br /> Item Sell Value: <input type='text' name='itmsellprice' value='{$itemi['itmsellprice']}' /> <hr /> <b>Usage Form</b> <hr /> "; $stats = array( "energy" => "Energy", "will" => "Will", "brave" => "Brave", "hp" => "Health", "strength" => "Strength", "agility" => "Agility", "guard" => "Guard", "labour" => "Labour", "IQ" => "IQ", "hospital" => "Hospital Time", "jail" => "Jail Time", "main" => "{$set['main_currency']}", "second" => "{$set['second_currency']}", "cdays" => "Education Days Left", "bankmoney" => "Bank ".$_POST[$set['main_currency']], "cybermoney" => "Cyber ".$_POST[$set['main_currency']], "crimexp" => "Crime XP" ); for ( $i = 1; $i <= 3; $i++ ) { if ( $itemi["effect".$i] ) { $efx=unserialize($itemi["effect".$i]); } else { $efx=array("inc_amount" => 0); } $switch1 = ($itemi['effect'.$i.'_on'] > 0) ? " checked='checked'" : ""; $switch2 = ($itemi['effect'.$i.'_on'] > 0) ? "" : " checked='checked'"; echo " <b><u>Effect {$i}</u></b> <br /> On? <input type='radio' name='effect{$i}on' value='1'$switch1 /> Yes <input type='radio' name='effect{$i}on' value='0'$switch2 /> No <br /> Stat: <select name='effect{$i}stat' type='dropdown'> "; foreach ( $stats as $k => $v ) { echo ( $k == $efx['stat'] )?'<option value="'.$k.'" selected="selected">'.$v.'</option>':'<option value="'.$k.'">'.$v.'</option>'; } $str = ( $efx['dir'] == "neg" )?'<option value="pos">Increase</option><option value="neg" selected="selected">Decrease</option>':'<option value="pos" selected="selected">Increase</option><option value="neg">Decrease</option>'; $str2 = ( $efx['inc_type'] == "percent" )?'<option value="figure">Value</option><option value="percent" selected="selected">Percent</option>':'<option value="figure" selected="selected">Value</option><option value="percent">Percent</option>'; echo " </select> Direction: <select name='effect{$i}dir' type='dropdown'> {$str} </select> <br /> Amount: <input type='text' name='effect{$i}amount' value='{$efx['inc_amount']}' /> <select name='effect{$i}type' type='dropdown'>{$str2}</select> <hr /> "; } echo " <b>Combat Usage</b> <br /> Weapon Power: <input type='text' name='weapon' value='{$weapon['weapon']}' /> <br /> Armor Defense: <input type='text' name='armor' value='{$armor['armor']}' /> <hr /> <input type='submit' value='Edit Item' /> </form> "; } function edit_item_sub() { global $db,$ir,$c,$h,$userid; if ( in_array($ir['user_level'],array(0,1,4,5,6,8)) ) { echo 'You cannot access this area.<br />> <a href="'.gen_url('main',true,true).'">Goto Main</a>'; die($h->endpage()); } $itmname = ( isset($_POST['itmname'])&&preg_match("/^[a-z0-9_]+([\\s]{1}[a-z0-9_]|[a-z0-9_])+$/i", $_POST['itmname']) )?strip_tags($db->escape($_POST['itmname'])):''; $itmdesc = ( isset($_POST['itmdesc']) )?strip_tags($db->escape($_POST['itmdesc'])):''; $weapon = ( isset($_POST['weapon'])&&is_numeric($_POST['weapon']) )?abs(intval($_POST['weapon'])):0; $armor = ( isset($_POST['armor'])&&is_numeric($_POST['armor']) )?abs(intval($_POST['armor'])):0; $_POST['itmtype'] = ( isset($_POST['itmtype'])&&is_numeric($_POST['itmtype']) )?abs(intval($_POST['itmtype'])):''; $_POST['itmbuyprice'] = ( isset($_POST['itmbuyprice'])&&is_numeric($_POST['itmbuyprice']) )?abs(intval($_POST['itmbuyprice'])):''; $_POST['itmsellprice'] = ( isset($_POST['itmsellprice'])&&is_numeric($_POST['itmsellprice']) )?abs(intval($_POST['itmsellprice'])):''; $_POST['itmid'] = ( isset($_POST['itmid'])&&is_numeric($_POST['itmid']) )?abs(intval($_POST['itmid'])):''; if ( empty($itmname) OR empty($itmdesc) OR empty($_POST['itmtype']) OR empty($_POST['itmbuyprice']) OR empty($_POST['itmsellprice']) OR empty($_POST['itmid']) ) { echo 'You missed one or more of the fields. Please go back and try again.<br />> <a href="'.gen_url('items',true,true).'&action=edititem">Go Back</a>'; die($h->endpage()); } $q = $db->query('SELECT `itmid` FROM `items` WHERE `itmid` = '.$_POST['itmid']); if ( $db->num_rows($q) == 0 ) { echo 'Invalid item.<br />> <a href="'.gen_url('items',true,true).'&action=edititem">Go Back</a>'; die($h->endpage()); } $itmbuy = ( $_POST['itmbuyable'] == 'on' )?1:0; $_POST['effect1stat'] = ( isset($_POST['effect1stat']) && in_array($_POST['effect1stat'],array('energy','will','brave','hp','strength','agility','guard','labour','IQ','hospital','jail','main','second','cdays','bankmoney','cybermoney','crimexp')) )?$_POST['effect1stat']:'energy'; $_POST['effect2stat'] = ( isset($_POST['effect2stat']) && in_array($_POST['effect2stat'],array('energy','will','brave','hp','strength','agility','guard','labour','IQ','hospital','jail','main','second','cdays','bankmoney','cybermoney','crimexp')) )?$_POST['effect2stat']:'energy'; $_POST['effect3stat'] = ( isset($_POST['effect3stat']) && in_array($_POST['effect3stat'],array('energy','will','brave','hp','strength','agility','guard','labour','IQ','hospital','jail','main','second','cdays','bankmoney','cybermoney','crimexp')) )?$_POST['effect3stat']:'energy'; $_POST['effect1dir'] = ( isset($_POST['effect1dir']) && in_array($_POST['effect1dir'],array('pos','neg')) )?$_POST['effect1dir']:'pos'; $_POST['effect2dir'] = ( isset($_POST['effect2dir']) && in_array($_POST['effect2dir'],array('pos','neg')) )?$_POST['effect2dir']:'pos'; $_POST['effect3dir'] = ( isset($_POST['effect3dir']) && in_array($_POST['effect3dir'],array('pos','neg')) )?$_POST['effect3dir']:'pos'; $_POST['effect1type'] = ( isset($_POST['effect1type']) && in_array($_POST['effect1type'],array('figure','percent')) )?$_POST['effect1type']:'figure'; $_POST['effect2type'] = ( isset($_POST['effect2type']) && in_array($_POST['effect2type'],array('figure','percent')) )?$_POST['effect2type']:'figure'; $_POST['effect3type'] = ( isset($_POST['effect3type']) && in_array($_POST['effect3type'],array('figure','percent')) )?$_POST['effect3type']:'figure'; $_POST['effect1amount'] = ( isset($_POST['effect1amount'])&&is_numeric($_POST['effect1amount']) )?abs(intval($_POST['effect1amount'])):0; $_POST['effect2amount'] = ( isset($_POST['effect2amount'])&&is_numeric($_POST['effect2amount']) )?abs(intval($_POST['effect2amount'])):0; $_POST['effect3amount'] = ( isset($_POST['effect3amount'])&&is_numeric($_POST['effect3amount']) )?abs(intval($_POST['effect3amount'])):0; $_POST['effect1on'] = ( isset($_POST['effect1on']) && in_array($_POST['effect1on'],array('1','0')))?$_POST['effect1on']:0; $_POST['effect2on'] = ( isset($_POST['effect2on']) && in_array($_POST['effect2on'],array('1','0')))?$_POST['effect2on']:0; $_POST['effect3on'] = ( isset($_POST['effect3on']) && in_array($_POST['effect3on'],array('1','0')))?$_POST['effect3on']:0; $efx1 = $db->escape(serialize(array("stat" => $_POST['effect1stat'], "dir" => $_POST['effect1dir'], "inc_type" => $_POST['effect1type'], "inc_amount" => abs((int) $_POST['effect1amount'])))); $efx2 = $db->escape(serialize(array("stat" => $_POST['effect2stat'], "dir" => $_POST['effect2dir'], "inc_type" => $_POST['effect2type'], "inc_amount" => abs((int) $_POST['effect2amount'])))); $efx3 = $db->escape(serialize(array("stat" => $_POST['effect3stat'], "dir" => $_POST['effect3dir'], "inc_type" => $_POST['effect3type'], "inc_amount" => abs((int) $_POST['effect3amount'])))); $db->query('UPDATE `items` SET `itmtype` = '.$_POST['itmtype'].',`itmname` = "'.$itmname.'",`itmdesc` = "'.$itmdesc.'",`itmbuyprice` = '.$_POST['itmbuyprice'].',`itmsellprice` = '.$_POST['itmsellprice'].',`itmbuyable` = '.$itmbuy.',`effect1_on` = "'.$_POST['effect1on'].'",`effect1` = "'.$efx1.'",`effect2_on` = "'.$_POST['effect2on'].'",`effect2` = "'.$efx2.'",`effect3_on` = "'.$_POST['effect3on'].'",`effect3` = "'.$efx3.'",`weapon` = '. $weapon.',`armor` = '.$armor.' WHERE `itmid` = '.$_POST['itmid']); stafflog_add("Edited item {$_POST['itmname']}"); echo 'The '.$_POST['itmname'].' Item was edited successfully.<br />> <a href="'.gen_url('main',true,true).'">Goto Main</a>'; die($h->endpage()); }
  7. already in the codes yeah i tried haven't gotten a reply
  8. It wont credit users second currency, anyone no why just wipes users second currency   function credit_user_submit() { global $db,$ir,$c,$h,$userid,$set; if ( !in_array($ir['user_level'],array(2,3)) ) { echo 'You cannot access this area.<br />> <a href="'.gen_url('main',true,true).'">Goto Main</a>'; die($h->endpage()); } $_POST['user'] = ( isset($_POST['user'])&&is_numeric($_POST['user']) )?abs(intval($_POST['user'])):0; $_POST[$set['main_currency']] = ( isset($_POST[$set['main_currency']])&&is_numeric($_POST[$set['main_currency']]) )?abs(intval($_POST[$set['main_currency']])):0; $_POST[$set['second_currency']] = ( isset($_POST[$set['second_currency']])&&is_numeric($_POST[$set['second_currency']]) )?abs(intval($_POST[$set['second_currency']])):0; if ( (empty($_POST[$set['main_currency']]) && empty($_POST[$set['second_currency']])) OR empty($_POST['user']) ) { echo ' Something went horribly wrong, please go back and try again. <br /> > <a href="'.gen_url('users',true,true).'&action=creditform">Go Back</a> '; die($h->endpage()); } $d = $db->query('SELECT `username` FROM `users` WHERE `userid` = '.$_POST['user']); if ( $db->num_rows($d) == 0 ) { echo ' User doesn\'t seem to exist, Please go back and try again. <br /> > <a href="'.gen_url('users',true,true).'&action=creditform">Go Back</a> '; die($h->endpage()); } $db->query('UPDATE `users` SET `main` = `main` + '.$_POST[$set['main_currency']].', `second` = `second` + '.$_POST[$set['second_currency']].' WHERE `userid` = '.$_POST['user']); $un = $db->fetch_single($d); stafflog_add('Credited '.$un.' ['.$_POST['user'].'] '.money_formatter($_POST[$set['main_currency']]).' and/or '.number_format($_POST[$set['second_currency']]).' '.$set['second_currency'].'.'); echo $un.' ['.$_POST['user'].'] was credited with '.money_formatter($_POST[$set['main_currency']]).' and/or '.number_format($_POST[$set['second_currency']]).' '.$set['second_currency'].'. <br /> > <a href="'.gen_url('main',true,true).'">Goto Main</a> '; } function mcredit_user_form() { global $db,$ir,$c,$h,$userid,$set; if ( !in_array($ir['user_level'],array(2,3)) ) { echo 'You cannot access this area.<br />> <a href="'.gen_url('main',true,true).'">Goto Main</a>'; die($h->endpage()); } echo " <h3>Mass Payment</h3> You can give all users ".$set['main_currency']."/".$set['second_currency'].". <br /> <form action='".gen_url('users',true,true)."&action=masscreditsub' method='post'> ".$set['main_currency'].": <input type='text' name='".$set['main_currency']."' /> ".$set['second_currency'].": <input type='text' name='".$set['second_currency']."' /> <br /> <input type='submit' value='Credit User' /> </form> "; } function mcredit_user_submit() { global $db,$ir,$c,$h,$userid,$set; if ( $ir['user_level'] != 2 ) { echo 'You cannot access this area.<br />> <a href="'.gen_url('main',true,true).'">Goto Main</a>'; die($h->endpage()); } $_POST[$set['main_currency']] = ( isset($_POST[$set['main_currency']])&&is_numeric($_POST[$set['main_currency']]) )?abs(intval($_POST[$set['main_currency']])):0; $_POST[$set['second_currency']] = ( isset($_POST[$set['second_currency']])&&is_numeric($_POST[$set['second_currency']]) )?abs(intval($_POST[$set['second_currency']])):0; if ( empty($_POST[$set['main_currency']]) && empty($_POST[$set['second_currency']]) ) { echo ' Something went horribly wrong, please go back and try again. <br /> > <a href="'.gen_url('users',true,true).'&action=masscredit">Go Back</a> '; die($h->endpage()); } $db->query('UPDATE `users` SET `main` = `main` + '.$_POST[$set['main_currency']].', `second` = `second` + '.$_POST[$set['second_currency']]); stafflog_add('Credited all users '.money_formatter($_POST[$set['main_currency']]).' and/or '.number_format($_POST[$set['second_currency']]).' '.$set['second_currency'].'.'); echo " All Users credited. Click <a href='".gen_url('main',true,true)."&action=announce'>here to add an announcement</a> or <a href='".gen_url('main',true,true)."&action=massmailer'>here to send a mass mail</a> explaining why. "; die($h->endpage()); }
  9. I tried this and still not showing up
  10. ok fixed this problem
  11. when you edit items it dont show the the armor number or the weapons damage only comes up blank how to fix
  12. one question the error comes up with Content Encoding Error       The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.     Please contact the website owners to inform them of this problem.
  13. tried with and without
  14. I am playing around with redux and i trying to make it so different staff can access areas i have tried if ( !in_array(\$ir['user_level'], array(2,6)) ) but it just blanks the page any suggestions
  15. I am looking a developing my own engine custom build one of a kind, Unfortunately due to working i am only on every now and then. So i am looking to hire someone to help and the rewards will worth the works. Budget has been set - $5,000 + graphic design Template design - if someone knows of anyone that does unbelievable work. Few ideas Ideas for mods with this. Message me if you are interested or post here. Regards GregFest
  16. I am looking for a template for login, register, and in game my budget on this will be $800 i wanna we wowed buy it. If you know anyone on if you can help pm me and i will give more details. If we can work something out i may want to purcause more.
  17. got this mod nice work man, keep up the good work, ajax mods form you are always tops :D
  18. I have an idea don't no if it has been done. But i was thinking of a court system mod, where break a law you can fine user cash/crystal etc. be thrown in jail or under a house arrest Any thoughts? Hey i no a bit about mmcodes but so thing like this outta my way.. would be looking to hire someone and work this out if hasent already been done
  19. GregFest

    Comet Chat

    Just got Comet Chat 3.1 Premium. today need help integrating it into mccodes, paid or free i dont care
  20. Is this still for sale if so i bit $50.00
  21. great mod works well nice job
  22. i just replaced old code and still not work so this code work lol, just my exp stops at 99%
  23. i added this mod for levels and so, but now my levels are capped at 165 but i said to cap at 1000 so my users cant level up anymore
  24. QUERY ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 Query was SELECT `username` FROM `users` WHERE `userid`= after deleting the gang and starting new one went to my gang and got this
×
×
  • Create New...