Jump to content
MakeWebGames

twison

Members
  • Posts

    31
  • Joined

  • Last visited

  • Days Won

    1

twison last won the day on April 18 2021

twison had the most liked content!

About twison

  • Birthday 10/10/1983

Personal Information

  • Location
    United States

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

twison's Achievements

Newbie

Newbie (1/14)

  • Reacting Well Rare
  • First Post Rare
  • Collaborator Rare
  • Week One Done
  • One Month Later

Recent Badges

6

Reputation

  1. So I found boulderattack.com where the caveman and the mammoth is used and it shows as being © 2021-2022 BY TOKEN INTERACTIVE DESIGNED BY TRUE WEBSITE SOLUTIONS But they clearly state that ALL OTHER TRADEMARKS ARE THE PROPERTY OF THEIR RESPECTIVE OWNERS. Clearly they are using other people's work. I think he needs to fess up and stop before it gets worse for him. I've already contacted the original artist of the bear.
  2. Are you sure you are not lying and passing off someone else's work? Found this one for free.
  3. Maybe the same person created both of those games? If you do a search of the forums for thugbattle you will see that creating an account just to pick a fight on an old post isn't necessary.
  4. Thanks guys that is exactly what was needed, thank you!!!
  5. I'm not sure this is the correct section for this topic so I apologize if it isn't. I was given a game from a friend and it was coded with PHP 5.4 so I have a lot of updating to do. This game is unique as far as I know and have not found any clones of it. The original owner didn't want to give it away but he eventually passed his dream game on to me. My goal is to build a new game engine out of it but I have a lot of work to do on it starting with a responsive layout. Sadly I know nothing about Bootstrap to get my project going. I was wondering if there was anyone will to help or guide me on how to get started on making a Bootstrap layout? I have attached two images of the game as it currently is and would like to make the responsive layout look pretty much the same if possible. This is a medieval based rpg with hardly any features worth mentioning other then it has a huge map that you can explore. I look forward to hearing any feedback and offers of help for this project. I have high hopes that it will do well and become a much needed change from the standard criminal based games we are so used to seeing. I've decided to go with W3.CSS. I'm working with it now to accomplish what I have set out to do.
  6. $db->query("UPDATE users SET jail = 15 WHERE user_level = 0 AND jail = 0"); Adding something like this to your header.php should work just fine if the userlevel of the npc accounts is set to 0. This will put the npc in jail for 15 minutes every time a page is loaded by a user as long as the npc is not in jail. You can tweak it however fits your needs but should work just fine for what you're wanting to do.
  7. You could simply create 4 fake users (bots) and then give them each 1 day in jail. Then you could add a Update query in a global file to put them back in jail if they are no longer in jail. With it being in a global file like a header file every time a page is loaded by a user the query is used so as long as a user is online doing stuff the bot will always be in jail for 1 day. The is just a basic idea of how you could do it with the littlest changes to the coding as possible without having to alter or create a new section of the DB. That's a pretty good idea btw! Oh and something I usually like adding in is the option to throw rotten tomatoes at the people in jail, it's all in good fun. 😛
  8. I'm having an issue with my chat where chat posts are not getting inserted when using words like don't or won't. mysql_query("INSERT INTO chat (poster_id,date,class,poster_name,message,whisper) VALUES ('".$menu['id']."','$date','$class','$name','$message','$whisper_id')"); $message is the text part of the insert. I've tried "$message", "'.$message.'", and '".$message."' none of it helps. One of them simply changed the issue from ' to " not getting inserted. Any advice would be great. I'm a bit rusty on my coding skills as I haven't done it it awhile.
  9. I have done so and will not be opening the game to the public till after I have completely rewritten all the the scripts. The game is old and has always been extremely basic as far as content and I have been planning for years major upgrades to it and finally working towards making it happen.
  10. Thank you that works perfect now. Just a few things to iron out and then I can get back to work on the development while also upgrading at the same time. Thanks for all the help everyone!
  11. That did the trick, thank you!
  12. I figured I'd just start updating the scripts and already hit a snag. [13-Jul-2020 01:30:29 UTC] PHP Fatal error: Uncaught Error: Call to undefined function mysqli_result() in /home/legendsm/public_html/register.php:22 Stack trace: #0 {main} thrown in /home/legendsm/public_html/register.php on line 22
  13. A Shim is something new to me and have no knowledge of how to obtain and implement one at this time. Any advice or recommendations for a Shim would be most appreciated.
  14. That would be nice if it is possible. I would need version 5.4 but wouldn't want to be an annoyance to Dave over such an issue.
  15. Thanks, looks like I'll just have to shake off some of my coding rust and do what cleaning up I can.
×
×
  • Create New...