-
1 Attachment(s)
[Share]GM Manager Version 1.1
GM Manager Version 1.1
Function
1.Send gift
2.Add Item Option (Item Attr)
3.User Setting
4.Player Rank Update , Farm Rank Update , Guild Rank Update
5.Add TR to other members , Add EXP to other members
6.Piero Setting can select colour
7.Advance ItemAttr Setting
.Net Framework 3.5
Update Version 1.1
http://imageshack.us/scaled/landing/27/tic4.png
Download Version 1.0 : Attachment 136129
Download Version 1.1 : Download
-
Re: [Share]GM Manager Version 1.0
The program just freezing and "Not responding" when I click Login ><
-
Re: [Share]GM Manager Version 1.0
Quote:
Originally Posted by
Symbo
The program just freezing and "Not responding" when I click Login ><
Well you need to configure the connection to the server
Code:
[Config]
IP=Tcp:255.255.255.255,99999<---- Server IP
US=sa <---- Sql User
PW=talesrunner <--- Sql Pw
DB=TalesRunner <---- TalesRunner Db
ID=kevinteran99 <---- ID to edit
Version=1.0
[Web]
FB=https://www.facebook.com/pages/Tales-Runner-Latino/442958582425379 <--- Facebook Page
Quote:
Originally Posted by
Silver Bullet
GM Manager Version 1.0
Function
1.Send gift
2.Add Item Option (Item Attr)
3.User Setting
4.Player Rank Update , Farm Rank Update , Guild Rank Update
5.Add TR to other members
, Add EXP to other members
6.Piero Setting can select colour
Download Version 1.0 :
Attachment 136129
Nice!!
Works Very Well Help In some things
-
Re: [Share]GM Manager Version 1.0
Quote:
Originally Posted by
Kevin Teran
Well you need to configure the connection to the server
Code:
[Config]
IP=Tcp:255.255.255.255,99999<---- Server IP
US=sa <---- Sql User
PW=talesrunner <--- Sql Pw
DB=TalesRunner <---- TalesRunner Db
ID=kevinteran99 <---- ID to edit
Version=1.0
[Web]
FB=https://www.facebook.com/pages/Tales-Runner-Latino/442958582425379 <--- Facebook Page
Nice!!
Works Very Well Help In some things
I did it, Its just freeze when I click "Login" and then its just "Not responding"..
-
Re: [Share]GM Manager Version 1.0
Quote:
Originally Posted by
Symbo
I did it, Its just freeze when I click "Login" and then its just "Not responding"..
Same, this happened with the last TR GMC he released.
-
Re: [Share]GM Manager Version 1.0
Thanks Thanks Thanks Thanks
-
Re: [Share]GM Manager Version 1.0
Do someone knows why its freezing ["Not responding"] for me? ><
-
Re: [Share]GM Manager Version 1.0
Quote:
Originally Posted by
Kevin Teran
Code:
[Config]
IP=localhost\SERVERNAME (E.G mine is "WINDOWS-9GQLD08\TR" so it's localhost\TR)
US=sa <---- Sql User
PW=talesrunner <--- Sql Pw
DB=TalesRunner <---- TalesRunner Db
ID=kevinteran99 <---- ID to edit (Login ID not nickname)
Version=1.0
[Web]
FB=https://www.facebook.com/pages/Tales-Runner-Latino/442958582425379 <--- Facebook Page
Fixed.
-
Re: [Share]GM Manager Version 1.0
Quote:
Originally Posted by
Megaponder
Fixed.
Working, Thanks!
-
Re: [Share]GM Manager Version 1.0
-
Re: [Share]GM Manager Version 1.1
-
Re: [Share]GM Manager Version 1.0
Quote:
Originally Posted by
Megaponder
Fixed.
This is to local
I use VPS as I have to put Ip and port
Quote:
Originally Posted by
eTalesrunner
GM Manager Version 1.1
Function
1.Send gift
2.Add Item Option (Item Attr)
3.User Setting
4.Player Rank Update , Farm Rank Update , Guild Rank Update
5.Add TR to other members
, Add EXP to other members
6.Piero Setting can select colour
7.Advance ItemAttr Setting
.Net Framework 3.5
Update Version 1.1
http://imageshack.us/scaled/landing/27/tic4.png
Download Version 1.0 :
Attachment 136129
Download Version 1.1 :
Download
Maybe u can Upload the Option to change Pw??
-
Re: [Share]GM Manager Version 1.1
Yay v1.1 ><
Edit:
Is there any way to make other people access to my db? [from other pc]
-
Re: [Share]GM Manager Version 1.1
Quote:
Originally Posted by
Symbo
Yay v1.1 ><
Edit:
Is there any way to make other people access to my db? [from other pc]
MSSQL you can add logins or make a teamviewer.
Also it worked now that I used tylers way of entering it (localhost\TR)
-
Re: [Share]GM Manager Version 1.0
Quote:
Originally Posted by
Kevin Teran
This is to local
I use VPS as I have to put Ip and port
It works with anything as long as the database is on your computer.
-
Re: [Share]GM Manager Version 1.0
Quote:
Originally Posted by
Megaponder
It works with anything as long as the database is on your computer.
I works perfectly in DB Online
-
Re: [Share]GM Manager Version 1.1
guys , if you use the GM tool from another pc , you must enable "TCP" Option.
which lets you connect over IP (ipaddr,1433) [1433 = default port for mssql]
and from same pc , you need to use your addr (which probably is your computername/sqlexpress)
btw , this code could be improved by selecting with "AS" instead of select * (which may cause errors) .
like select namefd AS "NAME",cashfd AS "CASH" so it will look better and explains more..
Code:
private void Button2_Click(object sender, EventArgs e)
{
SqlConnection selectConnection = new SqlConnection();
SqlCommand sqlCommand1 = new SqlCommand();
SqlCommand sqlCommand2 = new SqlCommand();
DataTable dataTable = new DataTable();
DataSet dataSet = new DataSet();
INIControl.SelectINI(".\\Config.ini");
string str = "Server='" + INIControl.ReadINI("Config", "IP", "", 1024) + "';UID='" + INIControl.ReadINI("Config", "US", "", 1024) + "';PASSWORD='" + INIControl.ReadINI("Config", "PW", "", 1024) + "';Database='" + INIControl.ReadINI("Config", "DB", "", 1024) + "';Max Pool Size=400;Connect Timeout=600;";
selectConnection.ConnectionString = str;
selectConnection.Open();
SqlConnection sqlConnection = selectConnection;
if (sqlConnection.State == ConnectionState.Open)
sqlConnection.Close();
sqlConnection.ConnectionString = str;
sqlConnection.Open();
new SqlDataAdapter("SELECT * From tblAvatarUserAttr WHERE fdUserNum = " + this.TextBox2.Text + "", selectConnection).Fill(dataSet, "tblAvatarUserAttr");
if (dataSet.Tables["tblAvatarUserAttr"].Rows.Count == 0)
return;
DataGridView dataGridView1 = this.DataGridView1;
dataGridView1.ReadOnly = true;
dataGridView1.DataSource = (object) dataSet.Tables["tblAvatarUserAttr"];
}
also i've seen that you dont have any exception handler ...
which might cause shit load of problems.
anyway , nice share .
btw , i really think this one :
Code:
private void Button1_Click(object sender, EventArgs e)
{
SqlConnection connection = new SqlConnection();
SqlCommand sqlCommand1 = new SqlCommand();
SqlCommand sqlCommand2 = new SqlCommand();
INIControl.SelectINI(".\\config.ini");
MyProject.Computer.FileSystem.FileExists(INIControl.SelectedINI);
string str = "Server='" + INIControl.ReadINI("Config", "IP", "", 1024) + "';UID='" + INIControl.ReadINI("Config", "US", "", 1024) + "';PASSWORD='" + INIControl.ReadINI("Config", "PW", "", 1024) + "';Database='" + INIControl.ReadINI("Config", "DB", "", 1024) + "';Max Pool Size=400;Connect Timeout=600;";
connection.ConnectionString = str;
connection.Open();
if (Conversions.ToInteger(new SqlCommand("INSERT INTO tblGift (fdSendUserNum,fdSendNickname,fdReceiveUserNum,fdGiftItemDescNum,fdNotified,fdMemo) values ('" + this.TextBox1.Text + "','" + this.TextBox2.Text + "','" + this.TextBox1.Text + "','" + this.TextBox4.Text + "',0,'" + this.TextBox5.Text + "')", connection).ExecuteScalar()) == 0)
{
int num1 = (int) MessageBox.Show("Send Gift Ok.");
}
else
{
int num2 = (int) MessageBox.Show("Wrong!");
}
connection.Close();
}
can be improved by a stored procedure which returns -3 (which will cause the user to update in real time)
-
Re: [Share]GM Manager Version 1.1
Nooooooooooooooooooooooooo...it doesn't work with SQL Express 2012
-
Re: [Share]GM Manager Version 1.1
Quote:
Originally Posted by
Nathan Adhitya
Nooooooooooooooooooooooooo...it doesn't work with SQL Express 2012
Kevin uses SQL 2012 perfectly fine
-
Re: [Share]GM Manager Version 1.1
-
Re: [Share]GM Manager Version 1.1
Good Release , Thanks Bro :thumbup:
-
Re: [Share]GM Manager Version 1.1
i cant login into the gm manger what is the id? sa?
-
Re: [Share]GM Manager Version 1.1
Quote:
Originally Posted by
gaskor
i cant login into the gm manger what is the id? sa?
Your id and pw are the ones you use for your sql auth
-
Re: [Share]GM Manager Version 1.1
-
Re: [Share]GM Manager Version 1.1
what i need to write in gmc the userid?helep me plz~
-
Re: [Share]GM Manager Version 1.1
i cant connect into the gm manger can u helep me teamviewr???????plz
-
Re: [Share]GM Manager Version 1.1
Quote:
Originally Posted by
gaskor
i cant connect into the gm manger can u helep me teamviewr???????plz
Something like this: http://puu.sh/70ZT0.png
-
Re: [Share]GM Manager Version 1.1
-
Re: [Share]GM Manager Version 1.1
can u helep me how i can fix shop plz helep
- - - Updated - - -
any one can helep me how i can fix shop plz helep me
-
Re: [Share]GM Manager Version 1.1
Quote:
Originally Posted by
gaskor
can u helep me how i can fix shop plz helep
- - - Updated - - -
any one can helep me how i can fix shop plz helep me
helep
is
not
a
fucking
word
-
Re: [Share]GM Manager Version 1.1