Jump to content
MakeWebGames

Joshua

Members
  • Posts

    1,271
  • Joined

  • Last visited

Everything posted by Joshua

  1. oooh yea mcc uses that tiny decimal crap   I hated having decimal when I used it so i changed it to big int, not that i hoped it would ever be able to get high enough to cap it >,<
  2. Only 10 mill? usually it's 2.4bill ors omething... what is the integer set to on your database lol?
  3. Well, I just figure since it's the McC engine something as simple as   function usercard($card) { global $db; $data = "SELECT `userid`, `username`, `money`, `level`, `display_pic` " . "FROM `users` " . "WHERE (`userid`=".$card.")"; $q = $db->query($data); $fetch = $db->fetch_row($q); header('Content-Type: image/png'); $im = imagecreatefrompng('image.png'); //Would add user pics, other details, etc. here imagepng($im); imagedestroy($im); }   In the Global_func file, then call the file usercard($_GET['ID']);
  4. Ah, right. Good point.   Perhaps add the function into the header.php, same concept with mainmenu.php, then just do an include where the card is to be displayed? Shrugz. Even a global_func i'm sure would be just as effective
  5. I figured it had been Zu, but Several modifications have been done several times over. It's good for some variety :)
  6. Believe someone threw something like this out awhile back though I can't remember how well the programming was on it. Nice small addition :) Would suggest perhaps securing the $_GET['user'] variable as well as ask the question Why the odd include configurations?   Something like, require_once('globals.php'); would save you having to re-do all the database configuring as it's done for you in the class/globals file already ;)   <?php require_once('globals.php'); $data = "SELECT `userid`, `username`, `money`, `level`, `display_pic` " . "FROM `users` " . "WHERE (`userid`=".$_GET['userid'].")"; $q = $db->query($data); $fetch = $db->fetch_row($q); header('Content-Type: image/png'); $im = imagecreatefrompng('image.png'); //Would add user pics, other details, etc. here imagepng($im); imagedestroy($im); ?>
  7. About the 2 most useless stats in the engine :P
  8. I'm pretty sure you can email them for a change of address or change it online
  9. I have been and am continuing to do so. The original Mod i made of this was very basic. Then I made one where it uses the Multi Inventory Mod, same script just add-ons. Now I've totally re-done it for a customer to do what they want. My next Idea is to make a One Hit attack mod, so multiple users can attack the same person at once.
  10. Yea i've been meaning to put the updated fixed program on here, just a few small things were leaking but all in all it works wonders. I just recently modified it for a client so that all the results get put into a sum Total ie instead of you hit for 1 they hit for1 you hit for 1 they hit for 1 etc it just sums up the while loop and does the outcome then prints out a message. Added some css / background boxes for the username/id and weapon picture they are using, then added the gang battle stuff into it. Let it be known i did not make this mod from scratch, i found it off the GRPG script and altered the hell out of it ><
  11. It's what i'm here for bro :) Besides, unlike the normal you at least learn and turn around some great mods :) I still have the fixed version of your implant mod laying around somewhere :)
  12. Odd as you can't be attacked when you are in the hospital?
  13. Yep, thanks :) I've got quite a few, in-depth and highly unique modifications i'm planning out. Havent broached into the designing aspect of them yet, it's all about careful planning :P
  14. While I've been around off and on for quite a good deal of time, I've been super busy with work over the summer. I recently just finished up my supervisor job as of Thursday and am looking to get back into development full swing full time. ---I can/will be designing custom modifications Paid and Free. ---I will be taking modification requests(paid only at the moment) for all engines. ---I am back to securing gaming engines and websites(all forms) ---I am also working on layout design though i'm no where near great as of yet. I've been around these boards for quite some time now and have released several free modifications to give people some basic insight to my coding abilities(Although I feel I've learned quite a bit since even my last release). Any questions, or requests, feel free to pm me for a quote and a date for completion.
  15. Agreed illusions, just something I noticed that bugged the hell out of me (: Have to take into consideration just about every game I've seen the code to uses the darn minute cron. It's a fairly high average of people
  16. Granted a lot of people are converting to time stamps which I feel is best. However, I noticed something in cron minute that is absolutely ridiculous to me and figured i'd post it up and the quick change.   open cron_minute if you are still running it and find. $hc=$db->num_rows($db->query("SELECT * FROM `users` WHERE `hospital` > 0")); $jc=$db->num_rows($db->query("SELECT * FROM `users` WHERE `jail` > 0")); Now, i'm not sure why we are selecting every row in the users table here just to get a count. Simply change to $hc=$db->num_rows($db->query("SELECT `userid` FROM `users` WHERE `hospital` > 0")); $jc=$db->num_rows($db->query("SELECT `userid` FROM `users` WHERE `jail` > 0")); Nothing huge, not even minor enough to be called minor, but it bugged me ><
  17. Why not just use PHP then include the javascript i'm confused? if($requirement variable) { javascript stuff; } simple stuff.
  18. It was just a rough idea on how to get started on it, I was leaving the finer details to the actual maker ;p
  19. Eh you can do that via crons if you want it "simple" $xx = $db->query("SELECT `userid` FROM `users`"); $x = $db->num_rows($xx); $rand = rand(1,$x); $db->query("UPDATE `users` SET `donatordays`=`donatordays`+ An integer here WHERE (`userid` = ".$rand.")"); Slap the above in the day cron and it would auto credit a random user with the donator days you decide. Granted it's highly simple, but effective.
  20. Eh i've been through them, they pretty much need a re-code :p
  21. all the ones on here, need extensive re-coding, and Cronus's has a few loopholes as well I believe
  22. Beer on teh side? :O
  23. lol it was an example I swear! ^--
  24. lol. I've seen ENTIRELY to many god awful posts lately from people looking for the most mundane and easy to find things simply by typing in google OMG HELP ME FIND A PICTURE OF AN ORANGE CAT !!! google.com [ search ] orange cat omg i found it. Seriously.
  25. That's kind of the point dominion. From what I've seen lately no one WANTS to look thereself :P
×
×
  • Create New...