Jump to content
MakeWebGames

corruptcity || skalman

Members
  • Posts

    358
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by corruptcity || skalman

  1. hey I've got a backup copy of redux if your intrested in it would happily send it you?
  2. your prob looking at ads to start with to monitise, then it's some sort of subscription or selling ingame coins, gold etc
  3. Ah yeah that makes sense, I'll be adding PDO to my game myself soon. But first I'm learning something I prob should have learnt years ago but couldn't wrap my head around it at the time and gave up, oop. With a little help from chatgpt, copilot and youtube was able to do a gym and bank and currently working on crimes.
  4. Ah good man @Magictallguy. I was going to look at doing it during my weekend off this week. Did you add a PDO to it aswell?
  5. yeah that is correct, it needs some work to make it compatible and to work with php 7 or 8
  6. I'm with Fasthost got a VPS now only problem is that they are using plesk instead of cpanel. so had to learn how to use it have you gone to the new marketplace that @Dayo is running?
  7. in loanshark.php copy and paste your function index() code for me. The reason why you have the loan shark text is due to you not having an image so within the img tag alt text is being shown <img src='img/traders/loanshark.png' alt='Loan Shark' width='175' height='175' class='w3-image'> Also you haven't created a backstory but that bit of optional and can just remove that bit
  8. show me your code from the index function The loan Shark text is because you have a missing image and that is the alt text and that you need to create a backstory for your loan shark. Although you don't have to and can just remove
  9. I'm not sure I tested both on my webserver and both worked fine. have you tried importing the sql file? loan_shark(1).sql
  10. it's an old backup of my game that was running on redux at the time and can't remember what is stock and what isn't anymore
  11. you should have a quick common settings box that will set the frequency for you then in the command you need php /YOURWEBSERVER/public_html/cron_minute.php code="YOUR CODE GOES HERE" and that's that
  12. I do but it's not stock redux though
  13. so did you try to do it with the sql tab or did you import it? I only ask as I just tried it on my webserver and it worked for me
  14. prob thinking about $10
  15. yeah would prob think about selling licences to use this
  16. no that the bit of code your looking for in what you already have or if you can't find what I've put just look for the $q = $db->query(
  17. Hello everyone, I'm exploring the interest in a potential casino modification for McCodes and would love to gather your thoughts. This comprehensive mod would feature a Texas Hold Em poker machine where you draw 5 cards, allowing you to swap any or all of your cards to optimize your hand. Keep in mind, a high card would count as a loss. Additionally, there are two types of horse and dog racing within the mod. One is machine-based, where you select the winner from a pool of 6 horses/dogs with names and odds drawn at random. The other involves virtual horse/dog racing, offering choices from 12 horses and 8 dogs. You can select various bet types, such as Win, Eachway, Forecast, Reverse Forecast, and Tricast for horses, and Win, Forecast, Reverse Forecast, and Tricast for dogs. The mod also includes a slot machine feature with the option to play up to 5 lines for increased winning chances. The roulette function has been refreshed as well. Players can exchange their money for chips within the mod and have the flexibility to cash out. There's a transfer limit, but users can enhance it by obtaining a casino chip holder for 10 diamonds in my game. In terms of responsible gambling measures, I'm considering incorporating messages, phone numbers, and the ability for users to self-exclude from the casino for a year—something that won't be reversible. Staking and loss warnings will also be in place, triggering temporary suspensions like 1 hour or 1 day. Players will be able to access their stats as well. While I acknowledge that responsible gambling features may not be strictly necessary for a text-based game with no real money involved, I want to ensure that this mod doesn't become a gateway to problem gambling or encourage underage gambling. Having previously worked for a gambling company for three years, I am familiar with the potential impact of problem gambling and addiction. To give you a glimpse of my progress, I'll now share some screenshots.
  18. ah right no worries then
  19. Nothing springs to mind right now I'm stil using my template from 15 years ago lol just needed to add modern techniques and features to make it responsive
  20. Can only see the trucks
  21. Hey, in the query you can do WHERE u.user_level = 1 or u.userid no IN (1,2,3 other staff ids) or u.userid != 1 etc. The section of code your looking for is this if(in_array($_GET['action'], $hofqtwo)) { if($_GET['action'] == 'total') { $us = '(`strength` + `agility` + `guard` + `speed`+ `physical` + `mental` + `endurance`)'; } else { $us = '`' . $_GET['action'] . '`'; } $q = $db->query("SELECT u.`userid`, `laston`, `gender`, `donatordays`, `level`, `money`, `diamonds`, `username`, cartel, c.`cartel_PRESIDENT`, c.`cartel_PREF`, `strength`, `agility`, `guard`, `speed`, `physical`, `mental`, `endurance` FROM `users` AS `u` INNER JOIN `userstats` AS `us` ON `u`.`userid` = `us`.`userid` LEFT JOIN `cartels` AS `c` ON `c`.`cartel_ID` = `u`.`cartel` WHERE `u`.`user_level` = 1 $myf ORDER BY {$us} DESC, `u`.`userid` ASC LIMIT 25"); } Hope this helps
  22. yeah it's there or download the .sql file I've include then inside phpmyadmin import the file loan_shark(1).sql
  23. just had another look and on the login page where the 2 images meet in the middle there is what looks like a black line I find that distracting my attention very visually noisey, if you get what I mean. once logged in I like your 3 column layout but maybe look at changing the heading color in each box, maybe with the city skyline background image instead of repeating it just make it stretch across all the way. also the faint white line doesn't go all the way down
  24. hey, your facebook login doesn't work for me. Also maybe have a look at your css with your height once logged in and you scroll down then keep scrolling down and you just get the background. Unless that was done by design but yeah looks good from what i've seen from the quick look I gave it
×
×
  • Create New...