Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Flyff v15 Official Setup Guide + Repack

Status
Not open for further replies.
Junior Spellweaver
Joined
May 28, 2005
Messages
184
Reaction score
1
denuch you can upload to me the databases serus give to
mediafire.com
not works for me from megaupload/rapidshare
 
Newbie Spellweaver
Joined
Mar 4, 2010
Messages
39
Reaction score
0
geeezz. i make it work but the problem is i cant make account.. should i use kikugalanet.? because when i try to execute it i got error.. i cant make account .. geezz :( anybody here can help
 
Junior Spellweaver
Joined
May 28, 2005
Messages
184
Reaction score
1
please someone can upload for me the databases to mediafire.com please!!
 
Last edited:
Mythic Archon
Joined
Mar 26, 2009
Messages
713
Reaction score
123
yea use kikugalanet

---------- Post added at 08:33 PM ---------- Previous post was at 08:33 PM ----------

and ur using the wrong query, use usp.CreateAccount procedure
 
Newbie Spellweaver
Joined
Mar 4, 2010
Messages
39
Reaction score
0
but when im trying to register on my website this will happen

Code:
Warning: mssql_execute() [function.mssql-execute]: message: Procedure or function webCreateAcc has too many arguments specified. (severity 16) in C:\xampp\htdocs\register.php on line 69

Warning: mssql_execute() [function.mssql-execute]: stored procedure execution failed in C:\xampp\htdocs\register.php on line 69
Something is wrong on the execution
 
Experienced Elementalist
Joined
Jan 3, 2010
Messages
206
Reaction score
14
- Mirror for DateBase

And same poop happends did all, reinstall etc and it still says login details incorrect... Nice.
 
Mythic Archon
Joined
Mar 26, 2009
Messages
713
Reaction score
123
because u guys are using the wrong procedure
the right query for the procedure is:
Code:
USE [ACCOUNT_DBF]
GO
/****** Object:  StoredProcedure [dbo].[usp_CreateNewAccount]    Script Date: 04/26/2010 18:48:40 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER proc [dbo].[usp_CreateNewAccount]
@account varchar(32),
@pw varchar(32),
@cash int = 0,
@email varchar(100) = ''
as
set nocount on
set xact_abort on

if not exists (select * from ACCOUNT_TBL where account = @account)
begin

begin tran
INSERT ACCOUNT_TBL(account,password,isuse,member,id_no1,id_no2,realname,cash)
VALUES(@account, @pw, 'T', 'A', '', '', '', @cash)
INSERT ACCOUNT_TBL_DETAIL(account,gamecode,tester,m_chLoginAuthority,regdate,BlockTime,EndTime,WebTime,isuse,secession,email)
VALUES(@account,'A000','2','F',GETDATE(),CONVERT(CHAR(8),GETDATE()-1,112),CONVERT(CHAR(8),DATEADD(year,10,GETDATE()), 112),CONVERT(CHAR(8),GETDATE()-1,112),'T',NULL, @email)
insert AccountPlay (Account, PlayDate)
select @account, convert(int, convert(char(8), getdate(), 112))

if @@error <> 0
begin
rollback tran
select -1
end
else
begin
commit tran
select 1
end
end
else
begin
select 0
end
USE usp.CreateNewAccount

u need that procedure with this query. Good luck,, oow yea, and in cash, fill in 123 or 0.
 
Experienced Elementalist
Joined
Jan 3, 2010
Messages
206
Reaction score
14
Where to put account details in this script?
 
Mythic Archon
Joined
Mar 26, 2009
Messages
713
Reaction score
123
u dont need to, execute it and go to Account_DBF ---> programability ---> Stored Procedures ---> dbp.usp_CreateNewAccount---> Right click---> Execute stored procedure.
Thank em if it worked o:
 
Junior Spellweaver
Joined
May 28, 2005
Messages
184
Reaction score
1
denichu you can get into dungeons??
because when i get into dungeon i get dc... and in error its say invaild key
if i will download serus repack it will fully work?
here is the error its do to me:

2010/ 4/27 21:14:39 LoadObject : Part_maleHair05.o3d ְ׀±ג ½ֶַ׀

2010/ 4/27 21:14:39 Model\Part_maleHair05.o3d : ֳ£ְ» ¼צ ¾רְ½

2010/ 4/27 21:14:39 LoadObject : Part_maleHead05.o3d ְ׀±ג ½ֶַ׀

2010/ 4/27 21:14:39 Model\Part_maleHead05.o3d : ֳ£ְ» ¼צ ¾רְ½

2010/ 4/27 21:14:39 LoadObject : Part_maleUpper.o3d ְ׀±ג ½ֶַ׀

2010/ 4/27 21:14:39 Model\Part_maleUpper.o3d : ֳ£ְ» ¼צ ¾רְ½

2010/ 4/27 21:14:39 LoadObject : Part_maleLower.o3d ְ׀±ג ½ֶַ׀

2010/ 4/27 21:14:39 Model\Part_maleLower.o3d : ֳ£ְ» ¼צ ¾רְ½

2010/ 4/27 21:14:39 LoadObject : Part_maleHand.o3d ְ׀±ג ½ֶַ׀

2010/ 4/27 21:14:39 Model\Part_maleHand.o3d : ֳ£ְ» ¼צ ¾רְ½

2010/ 4/27 21:14:39 LoadObject : Part_maleFoot.o3d ְ׀±ג ½ֶַ׀

2010/ 4/27 21:14:39 Model\Part_maleFoot.o3d : ֳ£ְ» ¼צ ¾רְ½

2010/ 4/27 21:15:20 Invalid Map Key - [User : WrongWay, 0000016], [Land : DuFlMas01-01]
 
Last edited:
Experienced Elementalist
Joined
Jan 3, 2010
Messages
206
Reaction score
14
Copy files to model folder from data.res
 
Newbie Spellweaver
Joined
Mar 4, 2010
Messages
39
Reaction score
0
bro got same error.. i already do what u say then i get this on my web


Warning: mssql_execute() [function.mssql-execute]: message: Could not find stored procedure 'webCreateAcc'. (severity 16) in C:\xampp\htdocs\register.php on line 69

Warning: mssql_execute() [function.mssql-execute]: stored procedure execution failed in C:\xampp\htdocs\register.php on line 69
Something is wrong on the execution
 
Experienced Elementalist
Joined
Jan 3, 2010
Messages
206
Reaction score
14
It's weird. I can't create an account in any way. It just does not work.
All is configured perfectly. No more ideas, I give it up.
 
Experienced Elementalist
Joined
Jan 3, 2010
Messages
206
Reaction score
14
No more ideas really. Need SerusUriel reply with anymore ideas...
 
Newbie Spellweaver
Joined
Mar 4, 2010
Messages
39
Reaction score
0
WTF is this error.. so anoying. gzzz.. can some one help us please :p

---------- Post added at 07:33 PM ---------- Previous post was at 07:31 PM ----------

Zakhary u have worlddialog english there can i have??
 
Experienced Elementalist
Joined
Jan 3, 2010
Messages
206
Reaction score
14
I'm just wondering why do other poeple already play with SAME config with ALL FILES as me and I'm stuck. Also accounts were made in same way so...
 
Status
Not open for further replies.
Back
Top