Jump to content
MakeWebGames

illegalife

Members
  • Posts

    159
  • Joined

  • Last visited

Everything posted by illegalife

  1. Im up for hire if anyone needs me. ;]
  2. I am up for hire guys.
  3. I have a new email Smokey, [email protected], I sent you an email from that account.
  4. Exactly, I might of felt to rate it so high because the coding took longer then usual. Anyways, I will try to surprise you next time.
  5. Ok, I'm going to set the starting bid to $30 in that case. Every opinion is worth analizing so thank you, but trust me, I will never lose the faith ;] Yes I have been busy but have some spare time now if you need me.
  6. Please login with this info jlbird login: test password: test Hello Danny, yup long break but I'm up for the new challenges ;]
  7. Here's a layout I have worked on for a pretty long time, and it was supposed to be for Notorious. I decided to put it up for sale because the owner is taking too long to answer. This is truly my favorite layout that I have made. Check it out at http://wyzszaskala.com/8/login.php login: test pass: test Auction starts at $80. P.S. I am still available to make layouts but my time is limited, you are always welcome to describe your offer.
  8. Pretty old hah, but im still interested in this mod if anyone could help
  9. Hmm I get the "This person dose not wont to share there personal details." even if i register a new user it still won't update even though it says Updated and there's no error.
  10. Okay so my PHP knowledge is not good enough to do this but It's good enough to know that it cant be too hard ;] Okay so think of the item names as Donator Packs. When you click "Kup Wszystko" it takes you to an actual paypal page. All I need is the list of items and their quantity to be sent to my e-mail along with the paid receipt from the client. So instead of "website.com|DP|1|userid" I would have a whole list of what they bought. I also can't figure out how to delete the items from inventory once purchesed on paypal... Will pay for this waiting to hear your offers.
  11. Works now! ;] as promised, hit me up whenever you need a banner.
  12. O_o I just uploaded the original inventory.php, tried your thing and still getting "0" as the result. ;/
  13. Thanks, but still no good ;/ im getting "0" as the result. I need this to work guys. I will make a banner for your game for anyone that gets this to work. ;]
  14. Thanks guys but can you be a little more detailed? i really dont know what im doing... :/ Also, I would like to put the sum of items in inventory so if you have two weapons the code would show "2". Here's the code:   <?php include "globals.php"; $q=$db->query("SELECT * FROM items WHERE itmid IN({$ir['equip_primary']}, {$ir['equip_secondary']}, {$ir['equip_armor']})"); print "<h3>Equipped Items</h3><hr />"; while($r=$db->fetch_row($q)) { $equip[$r['itmid']]=$r; } print "<table width='75%' cellspacing='1' class='table'> <tr> <th>Primary Weapon</th> <td>"; if($equip[$ir['equip_primary']]['itmid']) { print $equip[$ir['equip_primary']]['itmname']."</td><td>[url='unequip.php?type=equip_primary']Unequip Item[/url]</td>"; } else { print "None equipped.</td><td></td>"; } print "</tr> <tr> <th>Secondary Weapon</th> <td>"; if($equip[$ir['equip_secondary']]['itmid']) { print $equip[$ir['equip_secondary']]['itmname']."</td><td>[url='unequip.php?type=equip_secondary']Unequip Item[/url]</td>"; } else { print "None equipped.</td><td></td>"; } print "</tr> <tr> <th>Armor</th> <td>"; if($equip[$ir['equip_armor']]['itmid']) { print $equip[$ir['equip_armor']]['itmname']."</td><td>[url='unequip.php?type=equip_armor']Unequip Item[/url]</td>"; } else { print "None equipped.</td><td></td>"; } print "</tr> </table><hr /> <h3>Inventory</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]Twoj koszyk jest pusty![/b]"; } else { print "[b]Your items are listed below.[/b] <table width=70% class=\"table\" border=\"0\" cellspacing=\"1\"> <tr> <td class=\"h\">Item</td> <td class=\"h\">Sell Value</td> <td class=\"h\">Links</td> </tr>"; $lt=""; while($i=$db->fetch_row($inv)) { if($lt!=$i['itmtypename']) { $lt=$i['itmtypename']; print "\n<tr><td colspan=4>[b]{$lt}[/b]</td></tr>"; } if($i['weapon']) { $i['itmname']="<font color='red'>*</font>".$i['itmname']; } if($i['armor']) { $i['itmname']="<font color='green'>*</font>".$i['itmname']; } print "<tr><td>{$i['itmname']}"; if ($i['inv_qty'] > 1) { print "x{$i['inv_qty']}"; } $calosc="$".($i['itmbuyprice']*$i['inv_qty']); print "</td><td>$calosc</td>"; print "<td>[[url='iteminfo.php?ID={$i[']Info[/url]] [[url='itemsell.php?ID={$i[']Usun[/url]]"; 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]]"; } print "</td></tr>"; } print "</table>"; print "$IWANT-THE-SUM-TO-PRINT-HERE"; } $h->endpage(); ?>
  15. Hello, sorry to bother you guys, but i've been trying to figure this out and i'm just too much of a noob. I need a code that would total up all the prices of items (inventory). So in this case the code would show "$35" as the sum of both items. Thanks!
  16. Anything free is good :D Keep it up Joshua the graphics will just get better and better as you play around with PS. They are already good if you started 3 weeks ago!
  17. Okay, missed the description sorry about that ;)
  18. Are these royal free?
  19. Looks good mate.
  20. That's creative, i like this mod.
  21. New Layout (and it's bright by the way :P)
  22. I like it!
  23. Well I guess the color scheme is just a matter of opinion CrimGame. :]
  24. Did you save the pics in the "images" folder?
×
×
  • Create New...