Jump to content
MakeWebGames

KyleMassacre

Members
  • Posts

    2,921
  • Joined

  • Last visited

  • Days Won

    48

Everything posted by KyleMassacre

  1. I do love how your stuff is real simple to install and the "injection" is real nice and easy. The term "injection" for people that havent used any of daves mods are what I believe are not having to manually import any SQL into your database. The second you open your file ingame it automatically imports all SQLs for you so its just plug and play
  2. About 90% of the mods are not hard at all just mostly time consuming as long as you follow the tut that has been made a sticky found HERE. The only thing I noticed since im new when I was converting and changing links around is: Say the link you are converting has an action of some sort echo "<a href='hereismyfile.php?action=hereismyaction'>link</a>" The conversion doesnt really show you how to convert this over and if you use the examples as a referance it kicks back an error so heres how to do it: echo "<a href='".gen_url('hereismyfile',true)."&action=hereismyaction'>link</a>" And the same if you action is using a variable or whatever: echo "<a href='".gen_url('hereismyfile',true)."&action={$var['var']}'>link</a>"
  3. seeing as I just made it for you but here it is again: $var=mysql_query("SELECT * FROM inventory WHERE inv_itemid = 57 && inv_userid = {$ir['userid']}"); while($var2=$db->fetch_row($var)) if ($ir['jail']) { echo "<b>NB:</b> You are currently in jail for {$ir['jail']} minutes.<br />"; if ($db->num_rows($var2) >=1) { echo" You currently have {$var2['inv_qty']} Jail Key(s)<br /> Use your <a href="itemuse.php?ID={$var2['inv_itemid']}">Jail Key</a> to get out<br />"; } } NOTE: This is an example. I have tested this on my localhost and it works for me and it should work for you. Just change the name of the item since I am using it for jail keys.
  4. I made one for jail keys to show up in the header and didnt use any joins so that is just a little bit more extra than what is required. All I did what just call out my inventory item id from the inventory table that matches with the item id of the item you want to use cause the itemuse goes off of inventory item id and not item id from the items table. Example: $var=mysql_query("SELECT inv_itemid, inv_userid FROM inventory WHERE inv_itemid = #<-item id of what you want here && inv_userid = {$ir['userid']}"); while($var2=$db->fetch_row($var)) Something like this
  5. Maybe post some the equip_armor or weapon code where you think the error may be at
  6. Well, this is the wrong thread for that so I suggest maybe searching the forums for it and of you cant find it start a new thread and post the errors and maybe some code to go along with it and im sure some people will jump in and help
  7. here are some forums http://www.mccodemods.com/devforum/featured-free-v1-mods/secured-forums/
  8. Hmm, did you try to change that $times=$db->fetch_single($qt); to $times=$db->num_rows($qt); ?
  9. You can try to delete in the code in the staff file the lines "OR EMPTY" for the fields that dont really matter like email for your NPCs money and crystals since NPCs dont really require those things then you can leave them blank. Or even easier just put values in there like 1
  10. Are you sure filled out every box? also, make sure that some of the values arent 0s. Some fields may require actual values like 1-9.
  11. Search works wonders ;) http://makewebgames.io/showthread.php/41133-Auto-Login-on-Register
  12. How about a random pw generator that way its all randon(hence the term random) and if players dont want to use it and get their passwords stolen then its kinda their bad. Or maybe make it alarm you every so many weeks, months or whatever to make you chang the password
  13. Im just going to come out and say that I think both systems are worth it, in then end you get paid and the user gets donator packs
  14. Talk to mccodes they can probably help ya
  15. Valid points but it should be some simple edits to the checks like removing the checkboxes all together and just make it so it checks to see if there is anything inserted into the fields and if not it just bypasses the empty spaces all together. But on the other hand if you do plan on using all 5 then I dont see an issue with un-checking a box while you are there. And how many items do people really plan on adding into 1 donator pack, cause if my math serves me correctly you can have 25 items rolled into 1 donator pack if the owner/admin(however they set this up) chooses?
  16. To me it looks like its missing something as well, maybe fill in those massive gaps between the content area, mainmenu, and topbar area
  17. You'll eventually learn it, im still learning and am far from being good at this ;)
  18. I would also maybe lower the will a bit too or you could get crazy amounts of stats real quick unless you edit the gym
  19. Instead of deleting stuff do as illusions said if your unsure what the line of code does also if its a bunch of lines you would like to delete just do a /* and end it with this *\ like this: /*this is the start of a query or code More More More End of the query or code */ Now, to add the column go to phpmyadmin then got to SQL at the top and paste this line and run it: ALTER TABLE `users` ADD `restore` INT( 11 ) NOT NULL DEFAULT 0; PS please dont knock me on the INT value, its what im used to and im still trying to under stand those values as well and im sure changing it to 1 or using tinyint would work just fine
  20. It means you dont have a restore column in the usrers table
  21. I kinda dig it but it seems a bit big so the more estates you got the more a user has to scroll
  22. I would listen to this post About 99% of people here are gameowners and developers so the only staff you may get from here are people that want to help with your game on the file/db side of things and it would be really rare to find someone willing to do that for a Dpack or two. Here is a little advice: 1. New template is a must, MC even tells you that in the little file they throw in the .zip cause looks are very important to members. No one wants to play an ugly game. 2. Security, this is also a must. Nothing is "100%" secure, trust me I know ;). There are a lot of no lifes out there that ruin peoples hard work for s**ts and giggles, and at minimum spend about $200 for it dont go cheap cause you'll regret it. 3. Storyline, come up with a storyline to keep people interested and not running a muck. You would be amazed at stuff you can add in as extras with a decent storyline. 4. Advertise, there are several top sites out there to help you and maybe pay for add space on a site as well. 5. Mods, you are going to need a lot of mods or players get bored. Try to be original too, a lot of games have the same stuff which isnt always bad because some players like certain aspects of other games they have played in the past and makes them feel a little at home. I am telling you all this from experience and wish I listened to people/learned this from the get go. This is not as easy as it looks or sounds to make the next hit game that everyone wants to play, the better the game, the more players you get, the more $$$ you get and the more staff members you get. Having staff at this point in time is useless, you wont need the help this early on.
  23. You gotta find the installer.php file first then you gotta follow the path so its something like this: gothcentral.x10.mx/uploads/blah/whatever/installer.php Just so you know those folder names are just an example and are not the real folder names
  24. Ok I think it extracts the files into a folder called MC Redux so after you have extracted the files try going to http://www.yourdomain.com/MC Redux/installer.php
  25. You say you got it for a good price, do you hold an actual license for it?
×
×
  • Create New...