Jump to content
MakeWebGames

iseeyou94056

Members
  • Posts

    691
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by iseeyou94056

  1. when i attack it say You lost all your EXP for running from the fight.   after i mug them but it also say You beat *********and stole $4 and gained *% EXP!   you get them both when you win and mug
  2. Re: delete gang after respect hit 0 can u post one like that
  3. what do i edit to change the exp in attacking s it is very little you get when you win
  4. Re: Newsletter Mod if i had money i would get it
  5. Re: Free Loan Shark System .
  6. Re: Little Modification Pack once again another great mod
  7. Re: Newsletter Mod wow nice mod
  8. Re: Stone, Paper, Scissors great mod
  9. Re: 1st AS/CE MCCODE Modification [AutoTrainer] how many copy's are left?
  10. Re: [v2]Take Your Partner On A Date[v2] no better i will just add the add ons in here when i get some time
  11. Re: HelphelpHelphelpHelphelpHelphelpHelphelpHelphelpHelphelpHelphelpHelphelpHelp i would help but because of your topic name you can do it your self
  12. Re: Paper Ads looks like you changed the donator system lol :p but still looks like a ok mod
  13. Re: Contact Form (Fresh & NEW!) no its not its nothing like a mailbox you send with the contact thing it goes to all staff then staff hit reply then when staff reply it goes to the users email not mailbox but email its nothing like mailbox
  14. Re: Profile Music   but it would take a lot and they do give warnings but most of gas now dont got many users so it is ok
  15. Re: Profile Music nope
  16. Re: Profile Music thanks :-P:p
  17. Re: Profile Music thanks :p
  18. Re: Profile Music ok its done i added what i forgot to add
  19. Re: Profile Music shit sorry i am updating it now lol
  20. in preferences.php add these cases case 'musicchange2': do_music_change(); break; case 'musicchange': music_change(); break; case 'musiccchange2': do_musicc_change(); break; case 'musiccchange': start_musicc_change(); break; then add these links [url='preferences.php?action=musiccchange']Toggle Music[/url] [url='preferences.php?action=musicchange']Music Change[/url] then find $h->endpage(); ?> right above it add function music_change() { global $ir,$userid,$h; print "<h3>Music Change</h3> Please Note Music Will Only Play If Your Music Is On Enter The Url(Link) To The Music You Would Like To Play On Your Profile. <form action='preferences.php?action=musicchange2' method='post'> Music Url(Link): <input type='text' name='music' /> <input type='submit' value='Change Music' /></form>"; } function do_music_change() { global $ir,$userid,$h; mysql_query("UPDATE users SET music='{$_POST['music']}' WHERE userid=$userid"); print "Music changed!"; } function start_musicc_change() { global $ir,$userid,$h; if($ir['musicc'] == "On") { $m="Off"; } else { $m="On"; } print "Are you sure you want turn your music $m? [url='preferences.php?action=musiccchange2']Yes[/url] | [url='preferences.php']No[/url]"; } function do_musicc_change() { global $ir,$userid,$h; if($ir['musicc'] == "On") { $m="Off"; } else { $m="On"; } mysql_query("UPDATE users SET musicc='$m' WHERE userid=$userid"); print "Success, your music is now $m! [url='preferences.php']Back[/url]"; } open viewuser.php and find print "<h3>Profile for {$r['username']}</h3><hr width='75%'> right under it add "; if($r['musicc'] ==On) {echo "<embed src='{$r['music']}' height='20'>";} echo " then add this to the users table in the db   ALTER TABLE `users` ADD `music` TEXT CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL , ADD `musicc` ENUM( 'Off', 'On' ) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT 'Off';
  21. Re: Status Updates if there is no pics then if he would like he can make me and i will add the images for him
  22. Re: [mccode] item images you mested up little in the inventory.php here is the fix   <?php session_start(); require "global_func.php"; if($_SESSION['loggedin']==0) { header("Location: login.php");exit; } $userid=$_SESSION['userid']; require "header.php"; $h = new headers; $h->startheaders(); include "mysql.php"; global $c; $is=mysql_query("SELECT u.*,us.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid WHERE u.userid=$userid",$c) or die(mysql_error()); $ir=mysql_fetch_array($is); check_level(); $fm=money_formatter($ir['money']); $cm=money_formatter($ir['crystals']); $lv=date('F j, Y, g:i a',$ir['laston']); $h->userdata($ir,$lv,$fm); $h->menuarea(); $inv=mysql_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",$c); if (mysql_num_rows($inv) == 0) { print "[b]You have no items![/b]"; } else { print "[b]Your items are listed below.[/b] <table width=100%><tr style='background-color:gray;'><th>Image</th><th>Item</th><th>Sell Value</th><th>Total Sell Value</th><th>Links</th></tr>"; $lt=""; while($i=mysql_fetch_array($inv)) { if($lt!=$i['itmtypename']) { $lt=$i['itmtypename']; print "\n<tr style='background: gray;'><th colspan=4>{$lt}</th></tr>"; } print "<tr><td>[img={$i[]</td><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]]"; if($i['itmtypename'] == 'Food') { print " [[url='itemuse.php?ID={$i[']Use[/url]]"; } print "</td></tr>"; } print "</table>"; } $h->endpage(); ?>
  23. Re: honourexchange.php   thanks
  24. Re: [$5] bb code in mailbox no its not go check if it is tell me where send me url to it
  25. Re: help gang desc in bbcodes thanks again :p
×
×
  • Create New...