Jump to content
MakeWebGames

lucky3809

Members
  • Posts

    1,115
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by lucky3809

  1. Really bad that's my opinion there is absolutely no theme to the game, or objective to make a player keep playing, the menu has too many links, that goes no where, no images even, then the wait time is too long to do each thing, players will not stick around if they have to wait 77 seconds just to play a click game. Looks like you just uploaded an older game engine to your server and called it good. lol
  2. lucky3809

    (SOLD)

    That's why it pays to learn the code, PHP is not hard to learn seems like you never secured the input going into the database, why it probably got hacked. Switching to another engine does not help the problem security is an issue for all websites, that's why you need to learn how to code and secure your site.
  3. To put my 2 cents into it, he just gave people mmcodes for free, posted all the main pages ones plus database sqls. My advice is LEARN PHP, no one is going to do it for you, if you can't learn it you will never be able to have a game and control the bugs and whatever happens in it. Or be able to update it. Unless you are loaded with cash and pay someone to do it all for you.
  4. If it's deprecated, you need to update the coding, because it's no longer valid with the PHP version your host/server is using.
  5. Edit:Nevermind seen you changed what I thought it could be. Your if statements are just wrong with what you are trying to accomplish though, you need to decide if they need a title and comment or just a comment with no title.
  6. lucky3809

    Paypal

    Thank you all for the info, I appreciate it, I was leaning towards the business account, but needed to ask before I did so, so I didn't make the wrong choice. I am going to check out those other pay sites too.
  7. lucky3809

    Paypal

    Depending where you live I have mine under my other business which I am going to change it, you need to register your business in the state you are in, in the US. and you will get a identification number, Paypal will asks for that number for their business account because for tax purposes. The only thing with using personal account is that it will show your name when a player buys something in game. While a business one will show the business name.
  8. lucky3809

    Paypal

    Thank you Dayo, I was leaning towards the business one, I already have one just didnt know rather to stick with it or change it back to personal.
  9. lucky3809

    Paypal

    What is best to use a personal or business paypal account? I never yet put a game out live. And going to in the next week and kind of wondering which type of paypal account I should use, if it matters?
  10. You won't find CPanel free they made it where the web hosting companies had to pay per license.
  11. To be honest the Mccode script may be a little outdated, but it's a good starter engine for someone who knows nothing about coding. I started with a generic login script before anything else.
  12. I thought this forum was gone for good, I am glad it is back! Was just thinking about it decided to google and seen the new domain change.
  13. lucky3809

    V2

    Did you give permission when you created your database user, for that database? Maybe also check if it's a chmod problem in your FTP for the database file, make sure it is 644 giving you access to that file. If you are not 100% that your database info matches, delete and remake a database and database user, and reenter the info in. Also sometimes depending on hosting it's not always localhost you enter but that of the hosting name on your account.
  14. If you can afford it just pay for someone to go through the engine you have now and secure it for you. Or by another copy of mccodes for the upgrade. Or look up on google how to secure, it's really not that hard to do. You just have to have time on your hands to do so, or money lol.
  15. NO one lol ...Unless you're scamming and trying to make $$$$ No way will someone be selling an app that makes $1.4 million and especially on this forum. It is HIGHLY unlikely!
  16. You should when installing pick mysqli, as for on some servers they do not use mysql anymore. or you can go through all the files and change to PDO. no matter what though you're going to have to change the coding to PDO or mysqli.
  17. But why mres,htmlentities,ect... on a digit? If I recall it updates the database with a 1 or a 2
  18. Just a simple question is your color scheme in all 3 css files the same name #isla-quest? If they are not, make sure your class= or id= is matching that of those names, as for your css part is not what is giving you the problem, but the class or id name may be giving you the problem. So check those tables or divs.
  19. mres is for alpha characters only, not numeric, also PDO is a lot better to use as stated, you can learn it here http://php.net/manual/en/book.pdo.php And you should know better not to copy and paste codes just because someone post them on here, actually research each code if you do not know what it does.
  20. Well you can find the problem by finding all the playerid= in the queries and go down them and add playerid='1',playerid='2',playerid= '3' and so on than run the cron and it will show you which query is giving the problem, by listing which number, that's how I always find my problem when I can't seem to know which query or echo statement it refers to.
  21. This is wrong.... $q_ry = "UPDATE memberstats SET my_labor = my_labor + ".$wj['r_MANUALGAIN']." , my_intelligence = my_intelligence + ".$wj['r_INTELGAIN'].", my_endurance = my_endurance +".$wj['r_ENDURGAIN']." WHERE playerid = ".interval($wj['playerid']) "; mysql_query($q_ry) or die(mysql_error());   As for if you look at the code and error the error is this part: WHERE playerid = ".interval($wj['playerid']) "; as for you did not add the right bracket closing it should be . than the double quote " at the end of the var you are using: WHERE playerid = ".interval($wj['playerid']).";
  22. Thanks for the reply, I was thinking that, was not really sure.
  23. I am building a website for all the businesses in my town, I was wondering is it a copyright infringement to list them on a website? Would I need to call or email those businesses to list them on it? There would be no pictures only addresses and numbers that you can find in the telephone book.
  24. You are confused, what I meant was when an item is used the item gets deleted per inventory id not item id, how mccodes is when an item is used, item use wise, it is used per item id and goes off quantity. Not inventory id because when you add to the inventory it goes into the quantity and does not insert a new inventory id unless it's an item the user does not have. To put it point blank, to use an example, is the game roguevampires how when you use the item it no longer exist to use a second time, it can only be used once, even if you were to refresh you will get an error that the item no longer exist. As for mccodes you can refresh till you have NO quantity.
  25. I mentioned the javascript because most of the time it is not the code at all but the users mouse, clicking too fast can result in 2 clicks at once, resulting in two item used. However other posters may also have a point about html tags being opened, or incorrect document html. IMO, I would just recode items all together instead of adding quantity I would just insert the item for it's own inventory id, and use the mysql count for that item to display the quantity or whatever, and when an item is used that inventory id is deleted, and can't be used again, and to use another item, the user would have to go back to their inventory and click use, ect...just prevents users from double clicking, or refreshing all together. I didn't mention this because it's a bit of an upgrade lol.
×
×
  • Create New...