Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
alsunj
/
blackjack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
1e0abe38
authored
May 02, 2023
by
alsunj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Upload New File
parent
32f3b01c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
scripts/C#/SaveScript.cs
scripts/C#/SaveScript.cs
0 → 100644
View file @
1e0abe38
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
using
UnityEngine.UI
;
public
class
SaveScript
:
MonoBehaviour
{
public
void
Savegame
()
{
StartCoroutine
(
SavetoDB
());
}
IEnumerator
SavetoDB
()
{
WWWForm
form
=
new
WWWForm
();
form
.
AddField
(
"username"
,
DBmanager
.
username
);
form
.
AddField
(
"bank"
,
DBmanager
.
bank
);
form
.
AddField
(
"loses"
,
DBmanager
.
loses
);
form
.
AddField
(
"wins"
,
DBmanager
.
wins
);
WWW
www
=
new
WWW
(
"http://localhost/save.php"
,
form
);
yield
return
www
;
if
(
www
.
text
[
0
]
==
'0'
)
{
UnityEngine
.
SceneManagement
.
SceneManager
.
LoadScene
(
3
);
}
else
{
Debug
.
Log
(
"sisselogimine ei nnestunud xx"
+
www
.
text
);
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment