Jump to content
MakeWebGames

Curt

Members
  • Posts

    525
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Curt

  1. lol...dominion has given you an example of how the query should look... simply replace "table_name" with "users" that should get ya rolling....
  2. ah nice, it was late when i posted but i will search on google for a while and let you guys know if i find anything helpful :)   cheers
  3. Hello, Layout looks very nice. Im curious is there a date of release or is it simply going to be done when its done...lol just asking cause i would like to check it out when its ready.. cheers
  4. Hello all, Ive seen gradient names in other games and i think its a nice feature. I would like to have it in my game and I think donators would enjoy the option. anyone know where a mod like this is ?... Thanks everyone, Curt
  5. I just recently used this modification on my game and got it to work. There is a few bugs within but its free so no complaints from me..it got the job done for me :) also mail should arrive within a few seconds after sending them, it did for me anyway....   nice mod
  6. lol...i see..thanks for the info Top post updated :) Cheers
  7. thanks i actually just made it today a little bit before i posted it here, where exactly is it unsecure ?...ive heard to always secure $_GET and $_POST and the one i use in this mod has no connectivity with the database so i didnt see the need to secure it. Other than that not sure where it would be unsecure at..
  8. thanks :) Also updated code to fix what you mentioned...
  9. Hello, I havent released any free mods for a long while now because i've been busy with my own game, anyway i created a simplefunction where an admin can rate all players thats been online within the past 2 days with a single click. With a small bit of editing it should be able to work with any mmcode rating modification. I like to rate my active players up and this is a HUGE time saver :)... Keep in mind this code must be edited to work with your own game. just replace the values with your database values and it should work fine. The code below is a simple function not a complete php page. I simply added this function to my staff.php file. the choice is yours.   case 'rateup': rate_everyone(); break; function rate_everyone() { global $db,$ir,$userid,$set; if($ir['user_level'] != 2) { echo " THIS AREA IS FOR STAFF ONLY! You have been logged for accessing this page and your account will be under review."; return; } $_GET['doit']=abs((int)$_GET['doit']); if ($_GET['doit']) { $ticktock=time(); // 172800 = LAST 2 DAYS $ticktick=$ticktock-172800; $rateup=$db->query("SELECT username,userid FROM users WHERE userid!={$ir['userid']} AND laston>$ticktick"); $totalup=0; while ($rtup=$db->fetch_row($rateup)) { $totalup+=1; // MAKE SURE TO CHANGE ratingp TO THE VALUE IN YOUR DATABASE $db->query("UPDATE users SET ratingp=ratingp+1 WHERE userid={$rtup['userid']}"); $db->query("INSERT INTO rating VALUES ('','{$rtup['userid']}',{$ir['userid']})"); event_add($rtup['userid'], "<span style='color:green'> {$ir['username']} </span> has given you a +1 Rating."); echo " {$rtup['username']} Rated up "; } echo " You successfully rated up $totalup players that was on in the last 2 days."; } echo "Click below will rate everyone up :) "; echo "[url='staff.php?action=rateup&doit=1'] RATE EVERYONE UP [/url]"; }   lol...i know this is a very simple modification but i figured someone might find it useful....its free so do what you want with it :P cheers
  10. Curt

    CrimGame

    looks like its going to be a great game, looking forward to checking it out in the near future :)
  11. I thought the same at first but he sure looks like a tough little Irish thug...lol... I guess it can represent the diversity of Thugs in the world..:P
  12. Hello everyone, I received my Advertisement Banners this morning and I think they are nice. Im satisfied with the service quality plus the price :) Here is a couple examples : I received 5 different Banner images..so 20$ each is not bad in my book :) I would recommend them if you need some affordable ad banners :) Thanks Haunted Dawg for referring me to them :) Cheers
  13. Thanks for the recommendation, i have paid for the 99$ 5 image deal pack and awaiting the results now. Ill show you guys an example of the images i receive, which should be before the end of the weekend :) Thanks
  14. You can add it right under globals in the search streets php script.
  15. Thanks guys for the comments. I put the layout template together myself and tried to keep it pretty basic as im not a great graphics person. Players dont seem to mind the simpleness of it :) Thanks for the reviews :) Curt
  16. Hello All, I'm requesting the work of a talented Graphics artist. I do not have very much skill in this area of game development. I need two quality ad banners in these sizes: 728x90 and 120x600 My budget is anywhere from 20$ up to 100$...to be honest im not looking for amateur looking banners..i need some nice professional banners..im willing to pay more for quality. If anyone knows a website or something ill be happy to check that out as well :) Im gonna google for some now and see what i can come up with, Thanks Everyone, Curt
  17. hello this is a nice feature and i plan on purchasing the bundle pack soon :)... but i am having an issue... A player starts a table..someone joins...then leaves in middle of game...next person joins the table and resumes the game from the first 2 guys.... anyone else have this issue ?... ill attempt and try to see if i can fix it myself...lol Thanks
  18. hello, i made a free mod similar to what your asking for..check it out : [mccode v2.x] Downtown Search cheers
  19. Curt

    coder

    lol....no offense to anyone here but i dont think there would be a big quality difference in Haunted Dawg's or Crimegame's securing job(unless one of them chooses to do a low quality job) because both of them have the skills to get the job done. Both are experienced and I dont think you would go wrong with either one. Like i said no offense to either person, they both know what they are doing :) Cheers
  20. Hello, if you use Firefox Web browser you can download a FTP plugin for it that works great.
  21. I support this idea, feel free to use the couple mods i made and posted here :)...downtown search, spying on someone, and a gym-edit..:P Good luck with this project aswell. Cheers
  22. Line 217 - $ripa = array_rand($ri,1) Try changing it to : $ripa = array_rand($rip,1)   see if that works for you :)
  23. Thanks issue resolved :) Cheers
  24. Thank you all, I am on Byethost..so i dont believe the host is the problem. Ive only got the report from two people, so im thinking it could be some faulting programming in one of my scripts...or the players are making false reports.. after reviewing the problem for a couple days ive ruled out that someone is actually booting them. Thanks Everyone, ill let you guys know what the problem was when i find it :P
  25. Hello everyone, Ive had several reports from players that someone is booting them out the game. Im curious has anyone heard of a program that does this ?
×
×
  • Create New...