Jump to content
MakeWebGames

SwiftGameR

Members
  • Posts

    262
  • Joined

  • Last visited

  • Days Won

    20

SwiftGameR last won the day on August 24

SwiftGameR had the most liked content!

6 Followers

About SwiftGameR

  • Birthday 12/19/1989

Personal Information

  • Location
    UK
  • Interests
    Web development

Recent Profile Visitors

4,901 profile views

SwiftGameR's Achievements

Enthusiast

Enthusiast (6/14)

  • Very Popular Rare
  • Conversation Starter Rare
  • Reacting Well Rare
  • Dedicated Rare
  • First Post Rare

Recent Badges

118

Reputation

  1. Only had a quick look but nice job few things i noticed * Design looks nice (login register etc) but i think there is to much empty space at bottom of page and on pc its asking me to scroll down your page (put height in css for container or body? * Would suggest you add footer to bottom of page would take up some that empty space. * Where it shows your energy bar etc to me i do not think it goes well here and is weird on my eyes personal opinion * Find all pages with crystals to bitcoin i found on index.php its not been changed yet * Add some kind of captcha system / and or user validation via email via link code etc. Other than that keep up your good work πŸ™‚
  2. is that built from gl to look like torn or rebuilt from scratch using old rc engine? Whatever it is iv not registered but looked at screenshots and damn looks amazing πŸ™‚
  3. yeah easy stuff just did wat a person needed who didn't understand success formulas but you made it better just somegames use boostes kike torn so i dd max anyways
  4. That was my next step but damn you went all out that looks amazing i just did mine raw html with a jquery function but your kicked it up a whole lot πŸ˜„ whatever.html <h1>Mccodes Crime Chance Calculator</h1> <p> This was written in html css and jquery to calculate the success rates based on the users level and there will. </p> <table class='table' style='text-align: center; width: 40%;' cellspacin='1' cellpadding='1'> <tr> <th>Users Level</th> <th>Users Will</th> </tr> <tr> <td><label for='level'>Level:</label></td> <td><input type='number' min='1' value='1' max='100' id='level' required /></td> </tr> <tr> <td><label for='will'>Will:</label></td> <td><input type='number' min='1' value='100' max='99999' id='will' required /></td> </tr> <tr><td colspan='2'><input type='sumbit' id='btnclick' value='Find Percentage' /></td></tr> </table> <table class='table' style='margin-top: 10px; text-align: center; width: 40%; height: auto;'> <tr><th>Result</th></tr> <tr><td><span id='result'></span></td></tr> </table> I wrote a little bit extra that i was planning on implentnting into if people were to use on there game. so if enter over 1000 into the box it just jumps back to max level which is currently set in the jquery but i will test yours as soon as get a server running again 😞 $(document).ready(function() { $('#btnclick').click(function() { let level = $('#level').val() let will = $('#will').val() let crimeSuccess = calcChance(will, level) crimeSuccess = crimeSuccess > 100 ? 100 : crimeSuccess console.log('logged chance rate at ' + crimeSuccess) $('#result').text(crimeSuccess) }) $('#level').keyup(function() { const maxLevel = 100; let levelcheck = $('#level').val() if (levelcheck > 100) { $('#level').val(maxLevel) } }) $('#will').keyup(function() { const maxWill = 99999; let willcheck = $('#will').val() if (willcheck > 100) { $('#will').val(maxWill) } }) // Value 1 is there level and value2 is there will function calcChance(value1, value2) { if (value1 && value2) { let result = ((value2 * 0.8) / 2.5) + (value1 / 4) result = result > 100 ? 100 : result return result + '%' } } }) also i added checks to make sure not over 100% will deffo play around with yours πŸ˜›
  5. Coded from pure html and jquery i only made it on jsfiddle thinking of implementing it into base of staff crimes file for easier viewing. For users who do not understand the formula for crime chance success rates. Enter users level and will and click calculate
  6. damn looking like torn factions now good job nd looking forward to seeing this πŸ˜›
  7. $this->querystring is being used before set adding $this->querystring = ''; or mtg works better xD i just couldn't see if it was in class as was going to suggest private ?string $querystring = null; // <-- declaring default null value for the property i have not looked at new version of grpg for while so dunno what exactly changed will need to peek
  8. https://getcomposer.org/doc/00-intro.md#installation-linux-unix-macos
  9. haha thats cool and yeah we had shit rain and been pretty cold today Yeah Github can be confusing but trust me do some research when you get free time and play around with it i have some private projects on there
  10. I used to think that to but you make your project private and you can allow people to push updates which you review them before making any changes torn.com has that many staff members they have there game hosted on github and any developers that make changes to code etc are reviewed by ched or experienced developer etc before its allowed into github and if you configure it properly the update can be pushed to your server as well but this requires ssh keys private and public and linked to your cpanel but to answer the question your project would be safe. If you need help with a file you can just edit it or paste it to me here or discord and i can edit / create it for you but i suggest looking into learning github i learned it from @Magictallguy while working with grpg project and its very handy. i found this https://stackoverflow.com/questions/76094652/can-anyone-upload-changes-and-commit-to-my-github-repository-is-it-is-public From a quick read of that link you can create a private repo and organization which allows users to read you files without being able to steal the code if it helps you πŸ™‚ have you tried using a API to get real time weather? there are probably more out there but here is a example https://open-meteo.com/ this is a open source project i found with a quick google search but here is a github repo for it πŸ˜„ https://github.com/open-meteo/open-meteo Email: [email protected] Discord: em2pro4u
  11. Well done peter i have never seen any games that is based on airliners pretty smart πŸ˜‰ Something new and Unique only thing close to this i seen was like Flight Simulator for PC / PS4 XBOX ETC, I am looking forward to see what you decide to do with the project and its final outcome. All you see is Mostly Mafia Games or Crime Games (Used to see Army games prison games Music Battle if i remember right and some Vampire games etc but more ideas out the box like this will surely bring in some members to build their ideas If you're looking for any coding help just give me a shout im experienced in GitHub if its hosted on there i can push updates for you to view before you add πŸ™‚ but all the best.
  12. fixed link haha πŸ™‚ new mods will be added soon along with some updates to previous modules listed.
  13. All my modules have been uploaded and linked for sale now https://openpbbg.com/index.php?page=myProducts
  14. All my modules have been uploaded and linked for sale now https://openpbbg.com/index.php?page=myProducts
  15. All my modules have been uploaded and linked for sale now https://openpbbg.com/index.php?page=marketplace&action=filter&filter[author][]=17
×
×
  • Create New...