|
You last visited: Today at 22:37
Advertisement
[C#]The Arcane Development Thread
Discussion on [C#]The Arcane Development Thread within the SRO Coding Corner forum part of the Silkroad Online category.
10/27/2010, 15:16
|
#196
|
elite*gold: 0
Join Date: Jan 2010
Posts: 1,484
Received Thanks: 809
|
The database will be released when it's done. Idk when it's done just WAIT. I'm having some problems with the storage and buying stuff it just doesn't work. no error no crash. I've to find to that problem
|
|
|
10/27/2010, 15:20
|
#197
|
elite*gold: 0
Join Date: Jan 2010
Posts: 1,484
Received Thanks: 809
|
Quote:
Originally Posted by asdfasdfjklhj
I have a question pls don't be anngy^^
What's the different from mysql and mssql?
|
It's just another database
mssql = Microsoft Sql server
mysql = uuhm just mysql I think
They are both Relational databases just like oracle.
but mysql is most used for web 90% (or something like that)off all websites are running php + mysql. But they are both just good database systems
@mage200 There are some little differences in the sql syntax. for example the like operator mssql uses & and mysql uses % if i remeber correctly.
|
|
|
10/27/2010, 15:24
|
#198
|
elite*gold: 0
Join Date: Oct 2010
Posts: 191
Received Thanks: 565
|
Update to karaktler database
Change name from
Berserkerbar
Berserkerspeed
To
berserkbar
berserkspeed
|
|
|
10/27/2010, 15:29
|
#199
|
elite*gold: 0
Join Date: Oct 2010
Posts: 191
Received Thanks: 565
|
I hope a moderator can clean this topic up.
This is development not a questioning forum on howto create a server.
When its done, its done
And a guide will be posted. And so will the files / database.
So just stay on topic (DEVELOPMENT).
|
|
|
10/27/2010, 15:43
|
#200
|
elite*gold: 0
Join Date: Oct 2010
Posts: 191
Received Thanks: 565
|
Update information
SAVED_SKILLS
Contains
Skill1, Skill2 etc etc etc.....
So i dont know how long that thing will be but yeah..
|
|
|
10/27/2010, 15:51
|
#201
|
elite*gold: 0
Join Date: Jan 2010
Posts: 1,484
Received Thanks: 809
|
Quote:
Originally Posted by Xsense
Update information
SAVED_SKILLS
Contains
Skill1, Skill2 etc etc etc.....
So i dont know how long that thing will be but yeah..
|
pff lyzerk is the worst db coder ever 
It's so inefficient to save the skills like that. His previous release with a mysql db had skill1 till skill500
and i saw in the code this:
Code:
ms = new MsSQL("SELECT * FROM saved_skills WHERE owner='" + Karakter.Information.CharacterID + "'");
using (SqlDataReader reader = ms.Read())
{
while (reader.Read())
{
Karakter.Stat.Skill.AmountSkill = reader.GetInt32(2);
for (int i = 1; i <= Karakter.Stat.Skill.AmountSkill; i++)
Karakter.Stat.Skill.Skill[i] = reader.GetInt32(i + 2);
So it's just the amount of skills which determine how many columns there are.
pff It'll be much better to re-code that part it's just such a bad way to save this data
|
|
|
10/27/2010, 15:59
|
#202
|
elite*gold: 0
Join Date: Oct 2010
Posts: 191
Received Thanks: 565
|
Quote:
Originally Posted by kevin_owner
pff lyzerk is the worst db coder ever 
It's so inefficient to save the skills like that. His previous release with a mysql db had skill1 till skill500
and i saw in the code this:
Code:
ms = new MsSQL("SELECT * FROM saved_skills WHERE owner='" + Karakter.Information.CharacterID + "'");
using (SqlDataReader reader = ms.Read())
{
while (reader.Read())
{
Karakter.Stat.Skill.AmountSkill = reader.GetInt32(2);
for (int i = 1; i <= Karakter.Stat.Skill.AmountSkill; i++)
Karakter.Stat.Skill.Skill[i] = reader.GetInt32(i + 2);
So it's just the amount of skills which determine how many columns there are.
pff It'll be much better to re-code that part it's just such a bad way to save this data
|
Yeah i saw that
A better way would be
skill_owner
skill_id
skill_level
.... anyways it is what it is
|
|
|
10/27/2010, 16:28
|
#203
|
elite*gold: 0
Join Date: Aug 2010
Posts: 346
Received Thanks: 416
|
Xsense, did u get the files working without errors? May i ask for them? just the bin folder + configs no db no anything..
|
|
|
10/27/2010, 16:29
|
#204
|
elite*gold: 0
Join Date: Oct 2010
Posts: 191
Received Thanks: 565
|
Quote:
Originally Posted by Miki Maus
Xsense, did u get the files working without errors? May i ask for them? just the bin folder + configs no db no anything..
|
I did , no errors .
Withouth db it wont work.
So you need all of it together.
I will upload when i finish the spawn issue, and set the skill data part correctly.
|
|
|
10/27/2010, 16:32
|
#205
|
elite*gold: 0
Join Date: Aug 2010
Posts: 346
Received Thanks: 416
|
Quote:
Originally Posted by Xsense
I did , no errors .
Withouth db it wont work.
So you need all of it together.
I will upload when i finish the spawn issue, and set the skill data part correctly.
|
whats the spawn issue? maybe i can help.
btw i am digging that sql file now:
Quote:
CREATE TABLE `char_skills` (
`SkillNr` int(11) NOT NULL AUTO_INCREMENT,
`CharID` int(15) NOT NULL,
`OtherName` char(64) DEFAULT NULL,
`SkillID` varchar(25) NOT NULL,
PRIMARY KEY (`SkillNr`,`SkillID`)
) ENGINE=MyISAM AUTO_INCREMENT=415 DEFAULT CHARSET=latin1;
|
|
|
|
10/27/2010, 16:33
|
#206
|
elite*gold: 0
Join Date: Feb 2008
Posts: 269
Received Thanks: 218
|
Quote:
Originally Posted by Xsense
I did , no errors .
Withouth db it wont work.
So you need all of it together.
I will upload when i finish the spawn issue, and set the skill data part correctly.
|
this means you will share all fixed source and db? when u complete it
|
|
|
10/27/2010, 16:37
|
#207
|
elite*gold: 0
Join Date: Jan 2010
Posts: 1,484
Received Thanks: 809
|
ensar00 how many times does it needs to be said.
All the files + database and all the stuff you need WILL BE RELEASED
and @MikiMaus that sql file isn't for this emu.
|
|
|
10/27/2010, 16:38
|
#208
|
elite*gold: 0
Join Date: Oct 2010
Posts: 191
Received Thanks: 565
|
Yes i will share it when its done.
@miki
No that is mysql.
I allready know the issues and how to fix them.
I will also create updates for the server, as the item mall for example only allows some to be bought , and several things that should have been added.
Just wait patiently and all will be released
|
|
|
10/27/2010, 16:40
|
#209
|
elite*gold: 0
Join Date: Aug 2010
Posts: 346
Received Thanks: 416
|
Quote:
Originally Posted by Xsense
Yes i will share it when its done.
@miki
No that is mysql.
I allready know the issues and how to fix them.
I will also create updates for the server, as the item mall for example only allows some to be bought , and several things that should have been added.
Just wait patiently and all will be released
|
**** i know it is mysql lol already converted it to mssql atm, but this is kinda pointless only some structure is almost same as arcane.. i made attempt to rebuild the db b4 but got bored lol..
|
|
|
10/27/2010, 16:59
|
#210
|
elite*gold: 0
Join Date: Oct 2010
Posts: 191
Received Thanks: 565
|
Update:
Characters / creation / silk / items / skills / done...
Only thing left is npc's
Then i will release a guide / download for it.
|
|
|
Similar Threads
|
[Development]Arcane Files
10/22/2010 - SRO Coding Corner - 4 Replies
Hi guys what happened on the other thread and i rlly don`t like this i decided to open new thread without spams flams trolls etc
this is arcane leaked server files but without db we`re trying to make the db any way download from
From Here:MEGAUPLOAD - The leading online storage and file delivery service
Hope you like it
Lets Be Fair and give the real credits
|
[LEAKED] Arcane Source Code [for Development only]
10/22/2010 - SRO Coding Corner - 136 Replies
Hi,
So have fun :) There alot of File which are missed. But you can see all Packets and .. You cant run that files. Because they are incomplete. You can make youre own Emulator you can see all Packets and Importent Informations.
Look at :
Game/Packets/Public.cs
Game/Packets/Private.cs
Loginserver isnt there. I think we dont need Packets from an LoginServer.
|
All times are GMT +1. The time now is 22:38.
|
|