trying to make a very simple “Unlock” character form…
IEnumerator UnlockThis (){
WWWForm UnlockForm = new WWWForm(UnlockShipURL);
UnlockForm.AddField ("username", username);
UnlockForm.AddField ("shiptounlock", ShipTOunlock);
if (UnlockForm.error == null) {
// REFRESH LOGIN.....
SettingsEAO.refresh();
}
}