-
Posts
738 -
Joined
-
Last visited
-
Days Won
41
Content Type
Profiles
Forums
Events
Everything posted by peterisgb
-
As for the most part this shouldn't stop or break the register system and is only minor display issues on a page that isn't really important 😄 But i have sorted it regardless.
-
you need to add the field "itmpic" you items where your game items are stored and i think thats it
-
Because the core, login/registration was a quick and simple system to use and get started from. Easier to remove un needed code without breaking much I've never actually built a login/registration system before so it made it easier to strip and keep it working.
-
Hmmm, Guess my game post inspired you to post aswell. Which is good else we wouldn't of seen this. Not bad, What did you write it in? php? any js jquery etc?
-
ugh, Minor problem there, Shouldn't be to hard to resolved. Erm. Nope didnt get errors. But then i rewrote the register sql 😄
-
Well i had to strip out most of mccodes pretty much everything just leaving the base core
-
hehe, Not quite yet but it is in the works and on the books to come.
-
Oh yes, Its real time hehe. Depends on the aircraft depends on how long it takes, Like a Concorde would be quicker than a 747. I just did one Flight from Newark, NY to London. Airbus A380 So at 1:41 in the morning my flight should be landing 😄
-
Hello, I'm Pete. I've been around theses parts for over a decade now. This is by far the best game yet. Since September last year I have been working with a friend on a Very Different type of Mccodes game. As some of you will go. Oh Mccodes, What can you really do with that. Well Alot really 😄 So here I am to introduce you to Airline Management. Airline Management is still very early in Alpha but in a state that is playable. This is a Real Time Flight Management game where you start a company send flights around the world from one airport to another to make money for better planes. Join Communities so you can see other HQ and Flights flying around the world. There are currently 7,201 Airports ingame and counting. So Why not come join, Test out the Game and give me your feedback here. Remember, This is still in Alpha so you may hit the odd bug but this game is still very much being worked on and improoved. This is still early stages so some systems ain't complete. -->-> Airline Management <-<-- Screenshots you ask? hmmm. Sure ok. I want you to join and test really but incase you don't. Enjoy these screenshots. Yes This is Real Time Weather aswell.
-
I think i started on HTML for dummies back in 1997 i think it was
-
Never liked that page anyway, But yeah, Post Lines 25, 26 and 27. You could do what i always do and just be rid of that page 😄 To do this open authenicate.php and edit a couple lines right near the bottom 😄
-
You are going to have to give wayy more detail than this to go off. First. Go to your Filemanager. Head to Lib directy and edit basic_error_handler.php and change define('DEBUG', false); too define('DEBUG', true); Reload the page then you will be displayed the error.
-
I just dragged the image from my desktop into the text box 😄 Any donations from my site and mods will be going to getting myself a computer desk and chair as I'm currently on the floor and its not good for my legs and back so my PC time has been limited 😞
-
Yup, thats more updated for sure. I kinda left as it but fixed the forum mitigation issue 😄
-
-
It should be simple as install and link.
-
Its abit of a fuzz so here is a fixed copy. <?php include "globals.php"; $_GET['buy'] = (isset($_GET['buy']) && !empty($_GET['buy'])) ? intval($_GET['buy']) : false; if ($_GET['buy']==100){ if ($ir['money'] < 700000){ echo "Sorry! You must have $700,000 on hand to buy 100 crystals!"; $h->endpage(); exit(); } $db->query("UPDATE users SET crystals=crystals+100, money=money-700000 WHERE userid=$userid"); echo "You have bought 100 crystals for $700,000!"; $h->endpage(); exit(); } if ($_GET['buy']==1000){ if ($ir['money'] < 6000000){ echo "Sorry! You must have $6,000,000 on hand to buy 1,000 crystals!"; $h->endpage(); exit(); } $db->query("UPDATE users SET crystals=crystals+1000, money=money-6000000 WHERE userid=$userid"); echo "You have bought 1,000 crystals for $6,000,000!"; $h->endpage(); exit(); } if ($_GET['buy']==10000){ if ($ir['money'] < 50000000){ echo "Sorry! You must have $50,000,000 on hand to buy 10,000 crystals!"; $h->endpage(); exit(); } $db->query("UPDATE users SET crystals=crystals+10000, money=money-50000000 WHERE userid=$userid"); echo "You have bought 10,000 crystals for $50,000,000!"; $h->endpage(); exit(); } echo" <h3>Crystals Dealer</h3> <br /> Here you can buy points from the crystals dealer for cash. The more points you buy, the cheaper they are.</p> <table> <tr> <th>Amount</th> <th>Price</th> </tr> <tr> <td><a href='?buy=100'>100 Points</a></td> <td>$700,000</td> </tr> <tr> <td><a href='?buy=1000'>1,000 Points</a></td> <td>$6,000,000</td> </tr> <tr> <td><a href='?buy=10000'>10,000 Points</a></td> <td>$50,000,000</td> </tr> </table>"; $h->endpage(); ?>
-
Thanks for the positive feedback. I keep fiddling everyday, little tweeks trying to improove. If you have any paid/free mods that you wish to add. Do get in contact. I added which platforms aswell so it doesn't have to be mccodes 😄 Its good exposure.
-
Your link is 404 dead
-
I have the patience, Just not the skill to put a good story in and bring people in.
-
If you wish to add any of your mods to my mod site then you have my discord, hit me up 🙂
-
So over the years I've made a few mods and after 10 years i felt it was time my mods got its own site to make it easier to find. You are more than welcome to check out my Mod Site and let me know what you think. Its had plenty of views already but havent officially posted about it yet so i decided its time. Any Feedback or/and ideas are welcome. Thanks
-
Been doing mine since 2018, still in beta, but most of the bugs are worked out. but ones work is never complete 😄
-
Dedication and Time is gone these days
-
What are your thoughs and opinions about this? Like i decided at long last to try it out and see what it can do and i managed to get it to make this.... <!DOCTYPE html> <html> <head> <title>Calculator</title> <style> body { font-family: Arial, sans-serif; background-color: #f2f2f2; } .container { margin: 50px auto; padding: 20px; background-color: #fff; box-shadow: 0px 0px 10px #ccc; border-radius: 10px; text-align: center; width: 300px; } h1 { margin-top: 0; font-size: 36px; color: #333; } input { display: block; margin: 10px auto; padding: 10px; border: none; background-color: #f2f2f2; width: 80%; border-radius: 5px; font-size: 18px; text-align: right; } .button-container { display: flex; flex-wrap: wrap; justify-content: space-between; margin: 10px auto; width: 80%; } button { padding: 10px 20px; border: none; background-color: #333; color: #fff; font-size: 18px; border-radius: 5px; cursor: pointer; } button:hover { background-color: #555; } button:active { transform: translateY(2px); } </style> </head> <body> <div class="container"> <h1>Calculator</h1> <input type="text" id="result" disabled> <div class="button-container"> <button onclick="clearScreen()">C</button> <button onclick="backspace()">BACK</button> <button onclick="insert('+')">+</button> <button onclick="insert('-')">-</button> <button onclick="insert('*')">*</button> <button onclick="insert('/')">/</button> <button onclick="insert('7')">7</button> <button onclick="insert('8')">8</button> <button onclick="insert('9')">9</button> <button onclick="insert('4')">4</button> <button onclick="insert('5')">5</button> <button onclick="insert('6')">6</button> <button onclick="insert('1')">1</button> <button onclick="insert('2')">2</button> <button onclick="insert('3')">3</button> <button onclick="insert('0')">0</button> <button onclick="calculate()">=</button> </div> </div> <script> function insert(num) { document.getElementById("result").value += num; } function clearScreen() { document.getElementById("result").value = ""; } function backspace() { var input = document.getElementById("result"); input.value = input.value.slice(0, -1); } function calculate() { var input = document.getElementById("result"); var result = eval(input.value); document.getElementById("result").value = result; } </script> </body> </html> TBH i'm pretty amazed that it was able to produce this and actually work.... Where could this go. Could we ALL be out of jobs?