Jump to content
MakeWebGames

Tangled

Members
  • Posts

    118
  • Joined

  • Last visited

Everything posted by Tangled

  1. Zetiteee do you do layouts?
  2. I went there....I'm lost...as usual but thanks for the reply
  3. I know this is and old post but can this be made for events as well? I know that you can delete events to see the hidden ones. but when you have 300 or more evens going on sometimes seems pointless trying to look through all of it to see if anything important happened.
  4. the basic one sounds good to me actually. I'm not liking that I can't see cash and crystal transfers. Not with all the alts users try to get away with. And like you I wouldn't want mine to be able to send roses all day either lol
  5. ok question on the mod I have created by cronus, I have a few errors showing up, also they are allowed to send money crystals back and forth. it doesnt show up in my staff logs. so If This one is better then yes please do. Mine has shared housing also and if one divorces the other they lose their house and all their will.
  6. Mccodes should remove this from the free mods..j/s
  7. same here. I'd love to have this mod!
  8. I'd like to know how to do this also
  9. I have Kyles Mod, I love it!!!
  10. What Guest is referring to Raven is this he plainly states he cannot afford it and you just offered to do it for him at a charge.
  11. I don't have that file or I'm just blind in one eye and can't see out the other:confused:
  12. where is this found? I've been looking for this: public $force_ssl_v3 = true;
  13. Tangled

    Learning PHP

    http://php.net/ is where I've started also try http://www.w3schools.com/
  14. I did get in fine but the 1st registration didn't work right just as Damink stated.
  15. Looks great! Love the look
  16. G7470 fixed me Thank you G! in the view user find: [<a href='punch.php?ID={$r['punches']}'>Punch</a>]   and change it to this: [<a href='punch.php?ID={$r['userid']}'>Punch</a>]   the punch.php from the original post from BaLoP and Equinox worked but it had to be tweeked around to make it work.
  17. can someone help I have V2: I get this error: Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/killersi/public_html/punch.php:2) in /home/killersi/public_html/globals.php on line 28 It also says User does not exhist. I tried the original post here as well as what Equinox posted. with those I got critical errors:   line 28 in globals.php is:   if (!isset($_SESSION['started'])) { session_regenerate_id(); $_SESSION['started'] = true; }   Punch SQL ALTER TABLE `users` ADD `punches' int 11 default '0'   -------------------------------------------------------- punch.php   <?php require_once('globals.php'); if(isset($_GET['ID']) && ctype_digit($_GET['ID'])) { if($_GET['ID'] == $userid) { echo 'You cannot punch yourself'; exit($h->endpage()); } $p = $db->query("SELECT userid, username FROM users WHERE userid = ".$_GET['ID']); if(!$db->num_rows($p)) { echo 'This user does not exist'; exit($h->endpage()); } $r = $db->fetch_row($p); echo 'You have punched '.$r['username']; event_add($_GET['ID'], "<a href='viewuser.php?u=$userid'>{$ir['username']}</a>has punched you in the face! Click <a href='punch.php?ID={$userid}'>here</a> to punch back!", $c); $db->query("UPDATE users SET punches=punches+1 WHERE userid = ".$_SESSION['userid']); } else { echo 'Please specify a user'; } ?>   ==================================================== then add   Punches {$r['punches']}   Then add to viewuser.php [<a href='punch.php?ID={$r['punches']}'>Punch</a>]
  18. Right that's where I got mine. :)
  19. oopsie... Dragon Blade I missed putting in the quotes - - - Updated - - -   Reason I was asking is because when I was instructed in adding images to items I had to make a column for it in items. And for the username images I had to add a column in users
  20. so what's your plan for the data base images have to be stored
  21. I followed the instructions give here and it helped...but there's no way to tell how many crimes are needed. And there's no event to say a gang crime has started or ended. Also could someone tell me how to add different types of things for the gang to do like instead of crimes say the had to do so many mugs or busts or attacks.
  22. lol Thank you very much Zettieeee!
  23. How fun :) I like it
  24. Sniko you are awesome!!!! thank you very much!
  25. Thank you both for your imput and advice...I am such a noob I'm reading what script suggested. I am doing my best to learn how to do this haha dictionary time!
×
×
  • Create New...