Jump to content
MakeWebGames

pavalache

Members
  • Posts

    34
  • Joined

  • Last visited

    Never

Everything posted by pavalache

  1. Re: Inventory revamp How'd you know that? :roll: I am allowed to post this, ask pog if you don't believe me. Otherwise, +1 for you mate, long way to 1k posts tho.
  2. Re: Inventory revamp yea don't worry, he actually recoded this for me.
  3. Re: Inventory revamp It was just a joke, on the same note... didn't know you're a celebrity here that deserves to be answered, thought you're just the forum police :-D man im sure POG wouldn't mind, he's a nice guy. peace
  4. Re: Inventory revamp My lawyer is still negotiating with his.
  5. Here's an inventory recoded %99 by POG1. You need MDK666's inventory mod installed (http://criminalexistence.com/ceforums/i ... ic=26757.0) altho you can strip the unneeded code and make it the default inventory. the css:   div#equippedItems { width:600px;margin:20px auto;padding:0; } div#equippedItems ul { list-style-type:none;margin:0; } div#equippedItems ul li { float:left;margin:3px 5px;width:100px; } .clearThis{clear:both}   inventory.php   <?php include "globals.php"; $q = $db->query("SELECT * FROM items WHERE itmid IN(".$ir['equip_primary'].", ".$ir['equip_secondary'].", ".$ir['equip_armor'].", ".$ir['equip_helmet'].", ".$ir['equip_boots'].", ".$ir['equip_amulet'].", ".$ir['equip_bracelet'].", ".$ir['equip_ring'].", ".$ir['equip_special']."); "); // // Create an 2D array for the items while($r=$db->fetch_row($q)) { $equip[$r['itmid']]=$r; } // // Create an array to use in the loop $types = array('primary','secondary','armor','helmet','boots','ring','bracelet','amulet','special'); echo '<h3><span style="text-decoration: none; font-size: 16px; font-weight: 600">Equipped Items</span></h3>', '<div id="equippedItems">'. '<ul>'; // loop through the $types array and print the info for($i; $i < count($types); $i += 1) { $t = $ir['equip_'.$types[$i]]; echo '[*]'. '<div style="border:2px solid #333333;">'. '<span style="color:#00FF00; margin-top:10px;">'.$types[$i].'</span> '. '[img=itmpics/'.(($equip[$t]['itmpic']) ? $equip[$t]['itmpic'] : 'noitem.jpg').']'. ' '. '<span style="font-size: xx-small;">[[url="unequip.php?type=equip_'.$types[$i].'"]Unequip[/url]]</span> '. '<span style="color:#58ACFA;font-size: xx-small;">'.$equip[$t]['itmname'].'</span>'. '</p>'. '</div>'. ''; } echo '[/list]'. '<br class="clearThis" />'. '</div>'. '<h3Inventory</h3>'. '<hr />'; $inv=$db->query("SELECT iv.*,i.*,it.* FROM inventory iv LEFT JOIN items i ON iv.inv_itemid=i.itmid LEFT JOIN itemtypes it ON i.itmtype=it.itmtypeid WHERE iv.inv_userid={$userid} ORDER BY i.itmtype ASC, i.itmname ASC"); if ($db->num_rows($inv) == 0) { echo '[b]You have no items![/b]'; } else { echo '[b]Your items are listed below.[/b] '. '<table width="100%" class="table10" border="0" cellspacing="1">'. '<tr>'. '<td class="h">Item Image</td>'. '<td class="h">Sell Value</td>'. '<td class="h">Total Sell Value</td>'. '<td class="h">Item Name</td>'. '<td class="h">Actions</td>'. '</tr>'; $lt=""; // // Main loop to add the items to the table // while($i=$db->fetch_row($inv)) { // adds the row across the table with the item type name if($lt!=$i['itmtypename']) { $lt=$i['itmtypename']; echo '<tr><td colspan="5"><font color="red">'.$lt.'</font></td></tr>'; } echo '<tr>'. '<td>[img=itmpics/'.$i['itmpic'].'] '. (($i['inv_qty'] > 1)?' x'.$i['inv_qty']:false). '</td>'. '<td>'. money_formatter($i['itmsellprice']). '</td>'. '<td>'. money_formatter($i['itmsellprice']*$i['inv_qty']). '</td>'. '<td>'.$i['itmname'].'</td>'. '<td>'. '| [url="iteminfo.php?ID='.$i['itmid'].'"]Info[/url] '. '| [url="itemsend.php?ID='.$i['inv_id'].'"]Send[/url] '. '| [url="itemsell.php?ID='.$i['inv_id'].'"]Sell[/url] '. '| [url="imadd.php?ID='.$i['inv_id'].'"]Add To Market[/url] |'; $usershop=$db->query(sprintf("select * from usershops where userid = %u;",$userid)); if(mysql_num_rows($usershop)!=0) { echo ' | [url="addtoshop.php?ID='.$i['inv_id'].'"] Put in Shop[/url] '; } if($i['effect1_on'] || $i['effect2_on'] || $i['effect3_on']) { echo ' [url="itemuse.php?ID='.$i['inv_id'].'"]Use[/url] | '; } if($i['weapon']) { echo ' - [url="equip_weapon.php?ID='.$i['inv_id'].'"]Equip as Weapon[/url] -'; } if($i['armor']) { echo ' - [url="equip_armor.php?ID='.$i['inv_id'].'"]Equip as Armor[/url] -'; } if($i['helmet']) { echo ' - [url="equip_helmet.php?ID='.$i['inv_id'].'"]Equip as Helmet[/url] -'; } if($i['boots']) { echo ' - [url="equip_boots.php?ID='.$i['inv_id'].'"]Equip as Boots[/url] -'; } if($i['amulet']) { echo ' - [url="equip_amulet.php?ID='.$i['inv_id'].'"]Equip as Amulet[/url] -'; } if($i['bracelet']) { echo ' - [url="equip_bracelet.php?ID='.$i['inv_id'].'"]Equip as Bracelet[/url] -'; } if($i['ring']) { echo ' - [url="equip_ring.php?ID='.$i['inv_id'].'"]Equip as Ring[/url] -'; } if($i['special']) { echo ' - [url="equip_special.php?ID='.$i['inv_id'].'"]Equip as Special Item[/url] -'; } } } echo '</table>'. '<small>[b]Note:[/b]'. 'Some items are not what they appear to be.'; ?>
  6. Re: [NEED Help][MCCODES V2] Item Pic Mod here, use this shops code with pic before everything else, maybe this is what you're looking for.   <?php include "globals.php"; $_GET['shop'] = abs((int) $_GET['shop']); if(!$_GET['shop']) { print "You begin looking through town and you see a few shops. "; $q=$db->query("SELECT * FROM shops WHERE shopLOCATION={$ir['location']}"); print "<table width=85% cellspacing=1 class='table'><tr style='background: gray;'><th>Shop</th><th>Description</th></tr>"; while($r=$db->fetch_row($q)) { print "<tr><td>[url='shops.php?shop={$r[']{$r['shopNAME']}[/url]</td><td><font color='#BDBDBD'>{$r['shopDESCRIPTION']}</font></td></tr>"; } print "</table>"; } else { $sd=$db->query("SELECT * FROM shops WHERE shopID={$_GET['shop']}"); if($db->num_rows($sd)) { $shopdata=$db->fetch_row($sd); if($shopdata['shopLOCATION'] == $ir['location']) { print "Browsing the [b]{$shopdata['shopNAME']}[/b]... <table cellspacing=1 class='table'><tr style='background: gray;'><th>Image</th><th>Item</th><th>Info</th><th>Price</th><th>Sell Price</th><th>Buy</th></tr>"; $qtwo=$db->query("SELECT si.*,i.*,it.* FROM shopitems si LEFT JOIN items i ON si.sitemITEMID=i.itmid LEFT JOIN itemtypes it ON i.itmtype=it.itmtypeid WHERE si.sitemSHOP={$_GET['shop']} ORDER BY i.itmtype ASC, i.itmbuyprice ASC, i.itmname ASC"); $lt=""; while($r=$db->fetch_row($qtwo)) { if($lt!=$r['itmtypename']) { $lt=$r['itmtypename']; print "\n<tr style='background: gray;'><th colspan=6>{$lt}</th></tr>"; } print "\n<tr><td>[img=itmpics/{$r[]</td><td>{$r['itmname']}</td><td>{$r['itmdesc']}</td><td>\${$r['itmbuyprice']}</td><td>\${$r['itmsellprice']}</td><td><form action='itembuy.php?ID={$r['itmid']}' method='post'>Qty: <input type='text' size='3' name='qty' value='1' /><input type='submit' value='Buy' /></form></td></tr>"; } print "</table>"; } else { print "You are trying to access a shop in another city!"; } } else { print "You are trying to access an invalid shop!"; } } $h->endpage(); ?>
  7. Re: addtoshop error, please help. Thanks, problem fixed. +1 :mrgreen:
  8. Re: addtoshop error, please help. anything i should change here?
  9. Hello again, here's my problem with addtoshop.php mccodes2. Most of the time when i try to add the same item twice for the same price i get this error: 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 'where id=159' at line 1 Query was update usershopitems set quantity=quantity+ where id=159   Changing the prices eliminates the problem. thanks!
  10. Re: forum error +1, thanks bro.
  11. Guys, another error i can't fix. When trying to move a topic to another thread i get this(mccodes v2): Fatal error: Call to a member function query() on a non-object in /home/gamedb/public_html/forums.php on line 646   Line 646: $q=$db->query("SELECT * FROM forum_topics WHERE ft_id={$_GET['topic']}");   $q=$db->query("SELECT * FROM forum_topics WHERE ft_id={$_GET['topic']}"); $topic=$db->fetch_row($q); $q2=$db->query("SELECT * FROM forum_forums WHERE ff_id={$_POST['forum']}"); $forum=$db->fetch_row($q2); $db->query("UPDATE forum_topics SET ft_forum_id={$_POST['forum']} WHERE ft_id={$_GET['topic']}"); $db->query("UPDATE forum_posts SET fp_forum_id={$_POST['forum']} WHERE fp_topic_id={$_GET['topic']}"); print "Topic moved... ";
  12. Re: High-Low game, need a lil help please. if you hide the card the dealer shows... there's a 50/50 chance. if you limit the bets even more you've got yourself with a finger killer. everybody will click the bet key all they long till their fingers hurt without winning much and ruining the economy...thats what i think:P
  13. Re: High-Low game, need a lil help please. thanks PHP Scene, that did the trick, was using v2. +1 when i can. Cheers!
  14. Re: High-Low game, need a lil help please. Thanks Joel, that fixed the problem. +1 Now i get Fatal error: Call to a member function query() on a non-object in /home/gamedb/public_html/highlow.php on line 116   116: $db->query("UPDATE users SET money=$lose WHERE userid=$userid", $c); care to help again?:)
  15. I have the high-low mod from this topic: http://criminalexistence.com/ceforums/index.php?topic=15283.0   After i bet i get this error: Fatal error: Call to a member function mysql_real_escape_string() on a non-object in /home/gamedb/public_html/highlow.php on line 71   line 71: $amount=$db->mysql_real_escape_string($_POST['amount']);   Whats wrong? tried both mysql_real_escape_string and real_escape_string and im out of ideas..pls help a noob, thx!
  16. Re: [mccode] Crimes give random money problem fixed. good mod.
  17. Re: [mccode] Crimes give random money installed the mod as instructed but as others mentioned there is a problem with the money. i get this You receive:0 EXP, $ money, 0 crystals notice there is no number between $ and money, maybe this helps really want this simple mod but failed to fix it.
  18. Re: How can i decrease the brave gain/level? it has probably something to do with the hosting server
  19. Re: Inventory pic, 2 bucks for a small fix. POG1, thank you that did the trick. I'd try what you suggested but at this moment i really have no time to learn, this fascinates me tho. Pls pm me your pp address I'll send you 5 bucks. thx to anyone else that tried to help too, you guys are great i love this forum!
  20. Hello, tried half an hour and couldnt do it myself so guess i'll be paying 2 bucks to the first awsome guy that is going to post the solution along with many thanks. Here's where i want the pics of equipped items to be displayed. Here's my inventory file: <?php include "globals.php"; for($il=0;$il<112;$il++) { $item=mysql_query("SELECT * FROM inventory WHERE inv_userid=$userid AND inv_itemid=$il AND inv_qty > 0",$c); $gotitem = mysql_num_rows($item); if($gotitem == 0) { $h=2; } else { $z=0; $id = $il; while ($i=mysql_fetch_array($item)) { $z=$z+$i['inv_qty']; } $db->query("DELETE FROM inventory WHERE inv_userid=$userid AND inv_itemid=$id",$c); $db->query("INSERT INTO inventory VALUES ('', '$id', '$userid', '$z')",$c); } } $q=$db->query("SELECT * FROM items WHERE itmid IN({$ir['equip_primary']}, {$ir['equip_secondary']}, {$ir['equip_armor']}, {$ir['equip_helmet']}, {$ir['equip_boots']}, {$ir['equip_amulet']}, {$ir['equip_bracelet']}, {$ir['equip_ring']}, {$ir['equip_special']})"); print "<h3><span style='text-decoration: none; font-size: 16px; font-weight: 600'>Equipped Items</span></h3>"; while($r=$db->fetch_row($q)) { $equip[$r['itmid']]=$r; } ?><div style="padding: 15px;"><center> <table > <tr> <td class='textm2' align='left' style = 'width: 300px;'> <table width = '100%' cellpadding=5 cellspacing=5> <tr> <td width='25%' align='center'> <div style="border:2px SOLID #333333; width:120px; height: 110px;"> <font size = '-2' style = 'margin-top: 10px;'>[b]Bracelet[/b]</font> <div id = 'sec5' align = 'center'> <table width = '100%' valign = 'bottom'> <tr> <td align = 'center'> <?PHP if($equip[$ir['equip_bracelet']]['itmid']) { ?> <?php echo "[img=itmpics/{$i[]"; ?> </a> <?php } else {echo "[img=itmpics/noitem.jpg]";} ?> </td> </tr> <tr> <td align = 'center'></td> <tr> <td align = 'center'> <span style = 'font-size: xx-small;'>[[url='unequip.php?type=equip_bracelet']Unequip[/url]]</span> </td> </tr> </table> </div> </div> </td> <td width='25%' align='center'> <div style="border:2px SOLID #333333; width:120px; height: 110px;"> <font size = '-2' style = 'margin-top: 10px;'>[b]Helmet[/b]</font> <div id = 'sec5' align = 'center'> <table width = '100%' valign = 'bottom'> <tr> <td align = 'center'> <?PHP if($equip[$ir['equip_helmet']]['itmid']) { ?> <?php echo "[img=itmpics/{$i[]"; ?> </a> <?php } else {echo "[img=itmpics/noitem.jpg]";} ?> </td> </tr> <tr> <td align = 'center'></td> <tr> <td align = 'center'> <span style = 'font-size: xx-small;'>[[url='unequip.php?type=equip_helmet']Unequip[/url]]</span> </td> </tr> </table> </div> </div> </td> <td width='25%' align='center'> <div style="border:2px SOLID #333333; width:120px; height: 110px;"> <font size = '-2' style = 'margin-top: 10px;'>[b]Amulet[/b]</font> <div id = 'sec5' align = 'center'> <table width = '100%' valign = 'bottom'> <tr> <td align = 'center'> <?PHP if($equip[$ir['equip_amulet']]['itmid']) { ?> <?php echo "[img=itmpics/{$i[]"; ?> </a> <?php } else {echo "[img=itmpics/noitem.jpg]";} ?> </td> </tr> <tr> <td align = 'center'></td> <tr> <td align = 'center'> <span style = 'font-size: xx-small;'>[[url='unequip.php?type=equip_amulet']Unequip[/url]]</span> </td> </tr> </table> </div> </div> </td> </tr><tr> <td width='25%' align='center'> <div style="border:2px SOLID #333333; width:120px; height: 110px;"> <font size = '-2' style = 'margin-top: 10px;'>[b]Primary Weapon[/b]</font> <div id = 'sec5' align = 'center'> <table width = '100%' valign = 'bottom'> <tr> <td align = 'center'> <?PHP if($equip[$ir['equip_primary']]['itmid']) { ?> <?php echo "[img=itmpics/{$i[]"; ?> </a> <?php } else {echo "[img=itmpics/noitem.jpg]";} ?> </td> </tr> <tr> <td align = 'center'></td> <tr> <td align = 'center'> <span style = 'font-size: xx-small;'>[[url='unequip.php?type=equip_primary']Unequip[/url]]</span> </td> </tr> </table> </div> </div> </td> <td width='25%' align='center'> <div style="border:2px SOLID #333333; width:120px; height: 110px;"> <font size = '-2' style = 'margin-top: 10px;'>[b]Body Armour[/b]</font> <div id = 'sec5' align = 'center'> <table width = '100%' valign = 'bottom'> <tr> <td align = 'center'> <?PHP if($equip[$ir['equip_armor']]['itmid']) { ?> <?php echo "[img=itmpics/{$i[]"; ?> </a> <?php } else {echo "[img=itmpics/noitem.jpg]";} ?> </td> </tr> <tr> <td align = 'center'></td> <tr> <td align = 'center'> <span style = 'font-size: xx-small;'>[[url='unequip.php?type=equip_armor']Unequip[/url]]</span> </td> </tr> </table> </div> </div> </td> <td width='25%' align='center'> <div style="border:2px SOLID #333333; width:120px; height: 110px;"> <font size = '-2' style = 'margin-top: 10px;'>[b]Secondary Weapon[/b]</font> <div id = 'sec5' align = 'center'> <table width = '100%' valign = 'bottom'> <tr> <td align = 'center'> <?PHP if($equip[$ir['equip_secondary']]['itmid']) { ?> <?php echo "[img=itmpics/{$i[]"; ?> </a> <?php } else {echo "[img=itmpics/noitem.jpg]";} ?> </td> </tr> <tr> <td align = 'center'></td> <tr> <td align = 'center'> <span style = 'font-size: xx-small;'>[[url='unequip.php?type=equip_secondary']Unequip[/url]]</span> </td> </tr> </table> </div> </div> </td> </tr><tr> <td width='25%' align='center'> <div style="border:2px SOLID #333333; width:120px; height: 110px;"> <font size = '-2' style = 'margin-top: 10px;'>[b]Ring[/b]</font> <div id = 'sec5' align = 'center'> <table width = '100%' valign = 'bottom'> <tr> <td align = 'center'> <?PHP if($equip[$ir['equip_ring']]['itmid']) { ?> <?php echo "[img=itmpics/{$i[]"; ?> </a> <?php } else {echo "[img=itmpics/noitem.jpg]";} ?> </td> </tr> <tr> <td align = 'center'></td> <tr> <td align = 'center'> <span style = 'font-size: xx-small;'>[[url='unequip.php?type=equip_ring']Unequip[/url]]</span> </td> </tr> </table> </div> </div> </td> <td width='25%' align='center'> <div style="border:2px SOLID #333333; width:120px; height: 110px;"> <font size = '-2' style = 'margin-top: 10px;'>[b]Boots[/b]</font> <div id = 'sec5' align = 'center'> <table width = '100%' valign = 'bottom'> <tr> <td align = 'center'> <?PHP if($equip[$ir['equip_boots']]['itmid']) { ?> <?php echo "[img=itmpics/{$i[]"; ?> </a> <?php } else {echo "[img=itmpics/noitem.jpg]";} ?> </td> </tr> <tr> <td align = 'center'></td> <tr> <td align = 'center'> <span style = 'font-size: xx-small;'>[[url='unequip.php?type=equip_boots']Unequip[/url]]</span> </td> </tr> </table> </div> </div> </td> <td width='25%' align='center'> <div style="border:2px SOLID #333333; width:120px; height: 110px;"> <font size = '-2' style = 'margin-top: 10px;'>[b]Special Item[/b]</font> <div id = 'sec5' align = 'center'> <table width = '100%' valign = 'bottom'> <tr> <td align = 'center'> <?PHP if($equip[$ir['equip_special']]['itmid']) { ?> <?php echo "[img=itmpics/{$i[]"; ?> </a> <?php } else {echo "[img=itmpics/noitem.jpg]";} ?> </td> </tr> <tr> <td align = 'center'></td> <tr> <td align = 'center'> <span style = 'font-size: xx-small;'>[[url='unequip.php?type=equip_special']Unequip[/url]]</span> </td> </tr> </table> </div> </div> </td> </tr> </table> </td> </tr> </table></center> </div><hr /> <h3><span style='text-decoration: none; font-size: 14px; font-weight: 600'>Inventory</span></h3><hr /> <? $inv=$db->query("SELECT iv.*,i.*,it.* FROM inventory iv LEFT JOIN items i ON iv.inv_itemid=i.itmid LEFT JOIN itemtypes it ON i.itmtype=it.itmtypeid WHERE iv.inv_userid={$userid} ORDER BY i.itmtype ASC, i.itmname ASC"); if ($db->num_rows($inv) == 0) { print "[b]You have no items![/b]"; } else { print "[b]Your items are listed below.[/b] <table width=100% class=\"table10\" border=\"0\" cellspacing=\"1\"> <tr> <td class=\"h\">Item Image</td> <td class=\"h\">Sell Value</td> <td class=\"h\">Total Sell Value</td> <td class=\"h\">Item Name</td> <td class=\"h\">Actions</td> </tr>"; $lt=""; while($i=$db->fetch_row($inv)) { if($lt!=$i['itmtypename']) { $lt=$i['itmtypename']; print "\n<tr><td colspan=5><font color='red'>{$lt}</font></td></tr>"; } if($i['weapon']) { $i['itmname']="<font color='red'>*</font>".$i['itmname']; } if($i['armor']) { $i['itmname']="<font color='green'>*</font>".$i['itmname']; } if($i['helmet']) { $i['itmname']="<font color='blue'>*</font>".$i['itmname']; } if($i['boots']) { $i['itmname']="<font color='pink'>*</font>".$i['itmname']; } if($i['amulet']) { $i['itmname']="<font color='brown'>*</font>".$i['itmname']; } if($i['bracelet']) { $i['itmname']="<font color='yellow'>*</font>".$i['itmname']; } if($i['ring']) { $i['itmname']="<font color='lime'>*</font>".$i['itmname']; } if($i['special']) { $i['itmname']="<font color='darkorange'>*</font>".$i['itmname']; } print "<tr><td>[img=itmpics/{$i[]"; if ($i['inv_qty'] > 1) { print " x{$i['inv_qty']}"; } print "</td><td>\${$i['itmsellprice']}</td><td>"; print "$".($i['itmsellprice']*$i['inv_qty']); print"</td><td>{$i['itmname']}"; print "</td><td>| [url='iteminfo.php?ID={$i[']Info[/url] | [url='itemsend.php?ID={$i[']Send[/url] | [url='itemsell.php?ID={$i[']Sell[/url] | [url='imadd.php?ID={$i[']Add To Market[/url] |"; $usershop=$db->query("select * from usershops where userid=$userid"); if(mysql_num_rows($usershop)!=0) { $addtoshop="[url='addtoshop.php?ID={$i['] Put in Shop[/url] |"; print"$addtoshop"; } if($i['effect1_on'] || $i['effect2_on'] || $i['effect3_on']) { print " [url='itemuse.php?ID={$i[']Use[/url] |"; } if($ir['gang']>0 && $gangdata['gangARMORY']==1 && $i['inv_lent']==0) { print " [url='donateitem.php?ID={$i[']Donate To Gang[/url] |"; } if($ir['gang']>0 && $gangdata['gangARMORY']==1 && $i['inv_lent']>0) { print " [url='giveback.php?ID={$i[']Give Back[/url] |"; } if($i['itmtypename'] == 'Food' || $i['itmtypename'] == 'Medical' || $i['itmtypename'] == 'Donator Pack') if($i['effect1_on'] || $i['effect2_on'] || $i['effect3_on']) { print " [url='itemuse.php?ID={$i[']Use[/url] |"; } if($i['weapon']) { print " - [url='equip_weapon.php?ID={$i[']Equip as Weapon[/url] -"; } if($i['armor']) { print " - [url='equip_armor.php?ID={$i[']Equip as Armor[/url] -"; } if($i['helmet']) { print " - [url='equip_helmet.php?ID={$i[']Equip as Helmet[/url] -"; } if($i['boots']) { print " - [url='equip_boots.php?ID={$i[']Equip as Boots[/url] -"; } if($i['amulet']) { print " - [url='equip_amulet.php?ID={$i[']Equip as Amulet[/url] -"; } if($i['bracelet']) { print " - [url='equip_bracelet.php?ID={$i[']Equip as Bracelet[/url] -"; } if($i['ring']) { print " - [url='equip_ring.php?ID={$i[']Equip as Ring[/url] -"; } if($i['special']) { print " - [url='equip_special.php?ID={$i[']Equip as Special Item[/url] -"; } print "</td></tr>"; } print "</table>"; print "<small>[b]Note:[/b] Some items are not what they appear to be."; } ?>
  21. Re: [mccode v2] Simple Job Specials Wonderful mod! bug free so far
  22. Re: How can i decrease the brave gain/level? looking to gain 1 brave per level instead of 2. updated the user as shrek1609 suggested and the next day the brave were up at 20, lvl 10. twilight zone, i give up.
  23. Re: How can i decrease the brave gain/level? will do but as i said i have created a new account after moding the brave to +1 and its not working lol, maybe some server side problems ill try a reboot.
  24. Re: Problems with doing Crimes dont know if this is the case but im just trying to help... you might want to leave it as it was. there is the normal xp helping you level up and the crimes xp. When you add a crime you setup the Crime XP not the normal xp. You dont see the amount of crimes xp you setup unless you mod it i guess. make sure you dont receive like %20 xp for a crime or you might end up with people being level 1000 in a few weeks. put Crime XP: <?= $ir['crimexp'] ?> in your index somewhere and you should see the crimes xp gaining as much as you set it up to when creating a crime.
  25. Re: probably a silly question but couldnt find any info.. nobody knows :-o
×
×
  • Create New...