Hello! I am making a group game and was wondering if I can change a players rank in the group from a script in the game. This would make ranking a lot easier as when players reach a certain benchmark they will automatically be ranked up. I have seen this before but am not sure how to go about it.
Any help will be appreciated!
Cheers, WindNT
You need a server. Bit off topic reply, sorry.
A simple HTTP server with either PHP, or ASP.NET.
Make a server side script that takes in inputs, parse that data. Use URL Encode because it will be much easier. Here's an example:
http://server.com/rankup.php?username=TESTsubject0100&rankupto=Moderator
For after parsing that, use this linkroblox-js-server or Quenty's ROBLOX auto rank [Never used it before, no idea if it will work] Just look up a serverside script to rank someone up.
With ROBLOX's HTTP Client, you can POST data using URL Encode, the server should then take those inputs, and with the rank up script, rank them up.