
Gucci Mane
Members-
Posts
207 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Gucci Mane
-
umm... How would I add liek 10 will potions?
-
Question - Is it possible to put an image as a username?
Gucci Mane replied to Gucci Mane's topic in Game Support
wot ya mean bro? -
I have the basic jobs.php that came with mccodes v2. Can someone help me remove the jobs ranks? I wantjust the Job and the requirements and the payout not ranks.
-
Question - Is it possible to put an image as a username?
Gucci Mane replied to Gucci Mane's topic in Game Support
well...thats the point its a donator item, say 50 bucks for it and every change after you have 1 apllied is for say 20 bucks -
Question - Is it possible to put an image as a username?
Gucci Mane replied to Gucci Mane's topic in Game Support
what I did was make the image. Upload to cpanel then edit user and for there username I put <img scr=filename.png> where it says file name, change that to w/e the image you uploaded to your cpanels name ex. you make a image upload to cpanel as testimg.png you would put <img scr=testimg.png> in the users username -
mccode-v1 Stock Market. Working + Secured
Gucci Mane replied to Haunted Dawg's topic in Free Modifications
great mod works good man How can I change the stock prices though? -
sounds like a great mod wish I had the $5 lol
-
I have tried to put this on my game 3 times but it never seems to work
-
Does anyone have a shoutbox and/or a suggetions page? I need these for my game. If you do can you link em to the page or send the coding on this post. thanks
-
Question - Is it possible to put an image as a username?
Gucci Mane replied to Gucci Mane's topic in Game Support
A small custom made .png heres and ex of my game with that name[attach]1369[/attach] -
How can I edit my donator page, and make new packs?
-
if you need some help pm me for my msn we can talk there
-
Question - Is it possible to put an image as a username?
Gucci Mane replied to Gucci Mane's topic in Game Support
I got it but reek13 thats not the way but ty for trying to help. all is love, TSMW -
Is it possible to put an image as a a username?
-
seanybob I dont have no css files
-
Parse error: syntax error, unexpected T_STRING in /home/jewelz/public_html/inventory.php on line 58
-
<?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]You have no items![/b]"; } else { print "[b]Your items are listed below.[/b] <table width=100% class=\"table\" border=\"0\" cellspacing=\"1\"> <tr> <td class=\"h\">Item</td> <td class=\"h\">Sell Value</td> <td class=\"h\">Total 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']}"; } print "</td><td>\${$i['itmsellprice']}</td><td>"; print "$".($i['itmsellprice']*$i['inv_qty']); 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]]"; if($i['effect1_on'] || $i['effect2_on'] || $i['effect3_on']) { print " [[url='itemuse.php?ID={$i[']Use[/url]]"; } { print " [[url='dpuse.php?ID={$i[']Open Donator Pack[/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 "[size="1"][b]NB:[/b] Items with a small red [/size]<font color='red'>*</font>[size="1"] next to their name can be used as weapons in combat. Items with a small green [/size]<font color='green'>*</font>[size="1"] next to their name can be used as armor in combat.[/size]"; } $h->endpage(); ?> I need the tables to have a black BG instead of a grey one, I also need the text in #706e57 font color instead of black. I cant figure out how to do it. I tried messing around with it, but couldnt figure it out. Any help appreciated Thanks, TSMW[attach][attach=1368]1368[/attach][/attach]
-
Nicholas I dont have $IP = ($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']; I only have $IP = $_SERVER['REMOTE_ADDR'];
-
Tanks :D Thnk nichlas I appreciae i alot Dany 696 hes trying to help no need to be mean lol
-
I have my own game, I havestarted about 2 weeks back. I need someone to help me secure it. I only have the IP hack secured. Please Help.
-
why are all you guys hating on him unless you jealous, POG1 you think your better than everyone and try to diss on everyone you chump
-
code tags dont mess nothing up dude... Its makes the code like this it dont edit your code, DUHHH!!!
-
On alot of the mods I add they all work great but I always get This at the very top of the page: Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/jewelz/public_html/blackjack.php:3) in /home/jewelz/public_html/globals.php on line 6 I used to get this on other mods but my friend fixed the files for me, and they are great now, I have no idea how to fix this! Can someone help me please.
-
I know this wrong place to post but im sorry everyone looks here! If you know how to secure a game, please message me on here! or add me on MSN [email protected], pleae tell me the prices or if there is no charge! Thanks!!!!!!! TSMW