Jump to content

wishy

Contributors
  • Posts

    204
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by wishy

  1. It means your api is accessable. (my picture) The error message means there was no grant type in my body, because i did not send one
  2. try setting the host to "Hosts": [ "http://*:5401" ], And be sure you configured the firewall to allow access through port 5400/5401
  3. what's your api config?
  4. https://docs.freemmorpgmaker.com/dev/start/compiling.html = applying changes
  5. Little 'bug' I found, knockback attacks don't seem to knock back diagonally, still work vertically or horizontally though. Other than that still a very nice and bugfree mod! loving it!
  6. I tested out your game for a bit. Your patcher needs work Why is the game executable hidden and the resources in a hidden folder? The Uninstaller does not even delete all those hidden files... This list remained after uninstalling: A SHR G:\ha.exe A G:\heroes.dat A SHR G:\Intersect Client.pdb G:\logs A SHR G:\MonoGame.Framework.Client.dll A SHR G:\resources A SHR G:\SDL2.dll A SHR G:\soft_oal.dll I had to unhide them by typing this in cmd: attrib -h -s /s /d and then manually deleting them. The game itself looked nice, I like the cutscenes and the effort put into it, the gameplay needs some work, more animations, quests were not so clear,... Good start, could turn out a pretty nice game if you keep up the work and polish everything!
  7. wishy

    WIP Floor 100

    Apart from Intersect code, Shenmue's Diagonal movement code and TimeFantasy sprites pretty much yes.
  8. Done it myself Embedded Video Link
  9. wishy

    WIP Floor 100

    Added some extra's, can you spot them? Embedded Video Link
  10. Added new patch file, updated to latest dev branch -removed-
  11. Found a little issue, when npc's have a route with face down/face up etc... they start moving instead of facing that way.
  12. on line 119, 149 and 316 u lack a comma and line 581 has a comma too much https://jsonlint.com/ helps to find those errors
  13. No, sorry, you could resize your file before and after though
  14. example code for registration: function APIcall_GET($server,$access_token,$calltype,$postData){ // Setup cURL $ch = curl_init('http://'.$server.$calltype); curl_setopt_array($ch, array( CURLOPT_HTTPGET => TRUE, CURLOPT_RETURNTRANSFER => TRUE, CURLOPT_HTTPHEADER => array( 'authorization: Bearer '.$access_token, 'Content-Type: application/json' ), CURLOPT_POSTFIELDS => json_encode($postData) )); // Send the request $response = curl_exec($ch); // Check for errors if($response === FALSE){ die(curl_error($ch)); } // Decode the response $responseData = json_decode($response, TRUE); return $responseData; } $passwordhash = hash('sha256', $password); $postData = array( 'username' => $username, 'password' => $passwordhash, 'email' => $email ); $access_token = $login['access_token']; $calltype = '/api/v1/users/register'; $register = APIcall_GET($server,$access_token,$calltype,$postData);
  15. If you are very comfortable with php, then you really should be doing the registration through the API, I don't think messing with the database while the game is running is a good idea.
  16. Most probably, I'll check later, in the meanwhile, -removed- should be up to date, might be easier to do a pull request from that branch to your repo
  17. Here's an example Embedded Video Link
  18. pretty nice results so far for being automated with axes
  19. little sideproject to make paperdoll generation easier Embedded Video Link
  20. wishy

    WIP Floor 100

    Not as cute as your profile pic!
  21. wishy

    WIP Floor 100

    Complete UI update
  22. Make sure you are on the latest development branch, and patch the files 1 by 1, first the base then update 1 then update 2 Here's a video showing every step: Embedded Video Link I also added a new -removed- which should be compatible with the latest dev build, if it still doesn't work, you can either download the full version including this mod here: -removed- or do a pull request on your own repository from here: -removed-
  23. Update 2 Description: Boost Success Rate with the Luck stat, every 10% luck adds 1% success rate Video: Embedded Video Link Download: -removed-
×
×
  • Create New...