Search found 573 matches

by KyleMassacre
Mon Jul 09, 2018 7:26 pm
Forum: Advanced Help and Support
Topic: Encrypting a password the same in C# and PHP?
Replies: -1
Views: 61221

Re: Encrypting a password the same in C# and PHP?

This is perfect then, you only need the web server to provide any and all authentication. JWT is probably the way to go and is basically what everyone does for a multi platform communication system. A JWT token is basically equivalent to an API key that just holds basic info about the user that is e...
by KyleMassacre
Sun Jul 08, 2018 5:21 am
Forum: Advanced Help and Support
Topic: Encrypting a password the same in C# and PHP?
Replies: -1
Views: 61221

Re: Encrypting a password the same in C# and PHP?

I’m still thinking that all this I too much work. Is it safe to assume that you make a HTTP request to the server to update the player and show stats or whatever straight from the server? If you do then I don’t see a point in having 2 separate (but the same) authentication methods (1 in game, 1 web ...
by KyleMassacre
Sat Jul 07, 2018 1:04 am
Forum: Beginner Help and Support
Topic: Re: Fight Time Restrictions
Replies: 0
Views: 94752

Re: Fight Time Restrictions

I will concur with Jack and Halls. By doing it this way you can expand a little as well. For example $numTimes = 3; $count = $db->query(“select count(userId) from fightTable where userId = ? and fightTime <= ?”,$userId, time()); if($count >= $numTimes) {   // show message saying they can’t fight } e...
by KyleMassacre
Sat Jul 07, 2018 12:56 am
Forum: Project Showoff Tier I
Topic: PHP Game Tutorial (2021) aka GrindFest
Replies: -1
Views: 254843

Re: PHP Game Tutorial (2018)

Yeah but how many times has any of us said that haha
by KyleMassacre
Fri Jul 06, 2018 10:49 pm
Forum: Advanced Help and Support
Topic: Encrypting a password the same in C# and PHP?
Replies: -1
Views: 61221

Re: Encrypting a password the same in C# and PHP?

I'm no expert, but if you are going to encrypt a password in C#, I imagine you would use the same method that PHP uses, this way the "hashstring" should be identical. I think that is what he is stating he is having trouble with. I myself can’t really think of a scenario where you need to ...
by KyleMassacre
Fri Jul 06, 2018 8:09 pm
Forum: Advanced Help and Support
Topic: Encrypting a password the same in C# and PHP?
Replies: -1
Views: 61221

Re: Encrypting a password the same in C# and PHP?

Quick question: Is the Unity version for lack of a better term going to be somehow different than the web version? If so, seems a little odd. I figured you would just develop an API resource to communicate between the game and your database. Player enters credentials, credentials get sent to your se...
by KyleMassacre
Fri Feb 09, 2018 11:41 pm
Forum: Say Hello
Topic: Hi Everyone
Replies: -1
Views: 4606

Re: Hi Everyone

Its free! That should make it 100% better and the obvious choice. I was actually going to mention that. My one problem that I have though is: does this violate any license? If I were to run a live copy and somehow it gets out that it’s MCC, would I get shut down? Will this happen, probably not. Not...
by KyleMassacre
Fri Feb 09, 2018 11:30 pm
Forum: Say Hello
Topic: Hi Everyone
Replies: -1
Views: 4606

Re: Hi Everyone

Hello there! First off, I don’t want to be “that guy” but I do have some comments on the engine. What makes this any different than a Bootstrapped MCC Engine? I briefly looked over the code and I would say that a vast majority of it is straight from MCC. I do infact see some differences like replaci...
by KyleMassacre
Sat Feb 03, 2018 1:07 am
Forum: General
Topic: steal succesrate shops
Replies: -1
Views: 5331

Re: steal succesrate shops

One thing to note is that the lower the price of the item being stolen the easier it is to get away with it. Maybe what you can do is something like: $successRate = ceil($userStats[‘Dexterity’]->value * $userStats[‘Dexterity’]->value) /($total / rand(3,5));   Just to put things into perspective: Dex...
by KyleMassacre
Wed Dec 20, 2017 6:56 pm
Forum: Off-Topic
Topic: Net Neutrality
Replies: -1
Views: 8858

Re: Net Neutrality

That is correct as well but then there is the fact that not all providers are in all areas. For example, I can’t get Comcast or Verizon so who knows if a lot of people will be able to get the ISP that believes in Net Neutrality. I understand the main purpose of Captialism is to limit the Governmnet ...

Go to advanced search