-
Posts
204 -
Joined
-
Last visited
-
Days Won
26
Content Type
Profiles
Forums
Downloads
Everything posted by wishy
-
Trying to access api on GCloud Instance
wishy replied to seethingword's question in Development Questions
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 -
Trying to access api on GCloud Instance
wishy replied to seethingword's question in Development Questions
-
Trying to access api on GCloud Instance
wishy replied to seethingword's question in Development Questions
try setting the host to "Hosts": [ "http://*:5401" ], And be sure you configured the firewall to allow access through port 5400/5401 -
Trying to access api on GCloud Instance
wishy replied to seethingword's question in Development Questions
what's your api config? -
https://docs.freemmorpgmaker.com/dev/start/compiling.html = applying changes
-
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!
-
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!
-
Done it myself Embedded Video Link
-
Added new patch file, updated to latest dev branch -removed-
-
Found a little issue, when npc's have a route with face down/face up etc... they start moving instead of facing that way.
-
help with Russification intersect engine 6.1
wishy replied to Emao's question in Connectivity Support
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 -
-
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);
-
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.
-
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
-
Here's an example Embedded Video Link
-
Story Today I did this on my project...
wishy replied to SkywardRiver's topic in Design & Creativity
pretty nice results so far for being automated with axes -
Story Today I did this on my project...
wishy replied to SkywardRiver's topic in Design & Creativity
-
Story Today I did this on my project...
wishy replied to SkywardRiver's topic in Design & Creativity
little sideproject to make paperdoll generation easier Embedded Video Link -
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-
-
Update 2 Description: Boost Success Rate with the Luck stat, every 10% luck adds 1% success rate Video: Embedded Video Link Download: -removed-
