Jump to content
MakeWebGames

bineye

Members
  • Posts

    310
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by bineye

  1. or put the bit after like userid={$ir['userid']} or userid=".$ir['userid']."
  2. Open your register.php, find where it says mysql_query("INSERT INTO userstats...."), and add your stat in the end. Brave refill, you will be able to change that in cron_5mins.php
  3. New quests, as in missions? Search for missions using the search feature. I'm sure I saw a mod posted for that before. For new stats, you will need to add a new field in the table 'userstats' in your database, set a default for the starting amount (ie 10 for stamina or whatever), then update the insert query in the register.php where the other userstats are added. The amount of xp per level, there is a formula in the global_func.php (i think), called check_level() or similar, the formula for xp per level will be in there. To add a timer, you will need to use JS on your page, and although I know a little JS, I wouldn't feel comfortable telling you what to do for that. I am currently doing a personal project uing lite, so I think most of what I said is correct, but I don't have it open right now. But any difficulties, don't be afraid to message me. :)
  4. Hi jim, welcome to MWG. Could you clarify a few things for me please? When you say "new crimes", do you mean simply adding the new crimes from the staff panel, or you want them to work entirely differently? What exactly do you mean by "stamina in health"? I don't understand. And, "change the xp bar", do you mean the amount of xp required to reach the next level, or the actual bar graphic from the header? Hope you enjoy your time here. :)
  5. When the site switched over, there was a problem with <br /> being added...can only assume it's been written to remove those now.
  6. Yeah I know, but it seemed like lots of oddly complicated ways of going about it. I just thought I'd write it how I'd like to read it myself, nice and simple.
  7. @a_bertrand: It IS possible to insert into multiple tables, however, it would need 2 separate queries on execution, but still can be done. @ashbow: You could have added all comments into a single table, given each page an ID, then recall the comments for that page by filtering by this ID, then you could have recalled the last added comments from the same table as well.
  8. This actually could be a problem within one of your mods...open the scripts where this occurance can happen, and add a money check, eg. if money < $itemcost { echo "You don't have enough money."; $h->endpage(); } The problem will always be in individual pages, as opposed to the engine itself.
  9. Mega-Fail. I too don't like this game. The menu bars down both sides of the page are an eyesore, theres too many links in the menus too. Colour scheme seems a bit off, and I also don't have any idea what the game is about or what my objective is. I'd take the game down and get some issues resolved before releasing.
  10. or stick a line in the pages for the lists, saying something like if (donatordays == 0) { echo "Only Donators can access this page."; $h->endpage(); }
  11. Constructive, hmmm. Forgive me if this isn't to your liking, given your history on these forums. I found that when you asked for "constructive criticism" in the past, you don't appreciate ANY criticism and instead want "ooohhhh I love it". Ok enough of that. 1. When I put in a wrong username and/or password in the login page, I get a big white screen. This should be at least in the theme of your game. 2. 75%? What is to be added? I got all of 2 minutes of interest from your game, because the explore screen is basically the base MCCodes city page. Perhaps a section indicating what is to be added will induce more interest and give people a reason to hang about. Sometimes anticipation does more for your game than actually having all features available at once. 3. Layout. It feels so dull and dour. I am normally such a happy person, and 30 seconds of staring at your theme and I was more depressed than Eeyore.
  12. I agree 100%. But I foresee brand new threads being opened because people like their work done for them rather than learn themselves. Then we get lots and lots of "I found this x mod and am getting an error. Fix it for me." Pointless.
  13. What about the threads where the switchover has altered code, etc?
  14. I reckon going for a one-click would be less of a pain tbh
  15. very nice feature
  16. did you include the header.php file?
  17. ewwwww i tried to attack when had less than 50% energy...what an ugly screen (could be restricted to chrome though) EDIT: You beat demo!! You beat demo severely on the ground. When there is lots of blood showing, you head up to the nearest 10-story building's roof and drop him over the edge. You run home silently and carefully. AND You lost all your EXP for running from the fight on the same page.
  18. Way to go...If you died, would you like it if we celebrated it? Yes, he did some bad bad things, but death is the worst possible fate for every human, so at least be humble until his body is cold. :/
  19. *COFF* haven't you got a game to secure, you know the one I made myself admin on TWICE?
  20. Pity we couldn't get one of these... http://atdhe.net/
  21. hahaha i must use this :D
  22. Can no one IP ban him? lol
  23. on register, select all from cities where min_level <=1 then for the player, insert into users (along with the rest of the information) location value selected location.
  24. I already said those SQL errors are a result of the > symbol. You are setting a parameter for something being greater than and nothing else. In effect it's value > _______ , with the line representing a blank
  25. If you get a SQL error, try reading the query in normal english. This line reads "Where userstats.vitality is greater than AND userstats.userid is not equal to 1" You missed something there.
×
×
  • Create New...