Jump to content
MakeWebGames

Zettieee

Members
  • Posts

    790
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Zettieee

  1. Ah I see now! Nice idea man. What would be the best way to gather this info? A simple function in header or a more in depth system, collecting post and get values?
  2. The ID is needed but other info doesn't need to be stored Or maybe flush it after x days?
  3. I don't mean storage space lol. Logging every action a user makes is a big task, but is it really needed? Maybe you don't need to log every bit of info, eg: you only really need the file the user was in and how long they stayed (time). No need to log who the user was really?
  4. Could you PM me your game url? Trying to scout around for some ideas.
  5. How do you help you community grow? What features have you got that help with keep players active? Do you have a chat room? Is it at the top of each page?
  6. Cant loggin too much info be bad?
  7. Angel what was your other forum name? I cant remember seeing this name before. :/
  8. Just so you know I haven't played it in years. After the server reset I quit.
  9. Why not weapon upgrades?
  10. Aha! Sniko I sent you a skype msg, hope your not busy :D
  11. EDIT: Nevermind I just missed to include maxwill_before in my query. Duh. Hey guys so I got snikos property mod and it works great apart from on view user. When I go to viewuser I get this: Sorry, we could not find a user with that ID, check your source. It's clearly just a sql error but it's been racking at my brains for a good 2 hours. Here's my query $q = $db->query( "SELECT * FROM `users` `u` INNER JOIN `cities` AS `c` ON `u`.`location` = `c`.`cityid` INNER JOIN `houses` AS `h` ON `u`.`maxwill` = h.`hWILL` LEFT JOIN `gangs` AS `g` ON `g`.`gangID` = `u`.`gang` LEFT JOIN `fedjail` AS `f` ON `f`.`fed_userid` = `u`.`userid` WHERE `u`.`userid` = {$_GET['u']}"); if ($db->num_rows($q) == 0) { $db->free_result($q); echo 'Sorry, we could not find a user with that ID, check your source.'; }   In globals I have this: if ($housequery) { $is=$db->query("SELECT u.*,us.*,h.* FROM users u LEFT JOIN userstats us ON u.userid=us.userid LEFT JOIN houses h ON h.hWILL= 100 WHERE u.userid=$userid"); } else { $is = $db->query( "SELECT `u`.*, `us`.* FROM `users` AS `u` INNER JOIN `userstats` AS `us` ON `u`.`userid`=`us`.`userid` WHERE `u`.`userid` = {$userid} LIMIT 1"); } $ir = $db->fetch_row($is); include_once('property_mod_globals.php'); if(array_key_exists('hNAME', $ir)) { $ir['hNAME'] = ($ir['houseid_row'] > 0) ? get_house_name_by_row($ir['houseid_row']) : $ir['hNAME']; } The error only shows if the player is using a house from the new property system. If anyone can help me out that'd be great! :D
  12. I've gone with getting rid of primary and secondary and added equip_weapon and equip_boots. Makes more sence to me seen as they are 3 stats but standard mcc only allows you to edit 2 of them with items.
  13. Hey. Just want your guys opinion on the current primary and secondary weapon slots that are in mccodes v2. What does it add to your game? Have you changed it? How so? Thanks.
  14. Hey. Posting this service for a friend. Price is $10 per month. Package details: Disk Space Usage: 10GB Monthly Bandwidth Transfer: 100GB GB Email Accounts: 0 / 10 Subdomains: 0 / 10 Parked Domains: 0 / 10 Addon Domains: 0 / 10 FTP Accounts: 0 / 10 Mailing Lists: 0 / 10 All SQL Databases: 0 / 10 MySQL Databases: Unlimited MySQL Disk Space: Unlimited Server Specs: Intel Xeon Quad Core (X3430 4 x 2.4 GHz) CPU 4 GB DDR3 RAM (1800hmz) 500 GB SATA Hard Drive 20 TB Bandwidth. Send me a PM or post below.
  15. Stop *****ing in public. Take it to PM.
  16. Hosting doesn't matter really. I've seen his host and it's not an issue. This is a standard mccode v2 issue.
  17. Items cant have attack and def modifier. Pick one.
  18. include globals.php"; Whats wrong with this? answer it and you have yourself a fix.
  19. I have a v2 license but it's held by Zypher who has vanished :( And thnaks sniko
  20. You can avoid injection in usernames simply by using ctype_*. But my point was to get rid of offensive chars. PS:Does anyone know any other exploits/bugs in mccodes(v2)?
  21. Hey guys. So recently someone I know told me people can have special chars in their usernames. Some of these special chars are offense and shouldn't be allowed. On register you need to add ctype_alnum(); around the username input. Also on username change.
  22. If you get the funds I can recommend sniko. One the best coded on the forum. If Dave isn't busy and you have funds also try him.
  23. Slave hack? http://www.slavehack.com/
  24. Zettieee

    Layout Design

    Your not scaling the image. Your just making it smaller without keeping the same scale. ie: 16:9 , 4:1
×
×
  • Create New...