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!

[Release] KR 1.18 IRIS + DB + MOVIE

Joined
Aug 20, 2010
Messages
1,387
Reaction score
253
Newbie Spellweaver
Joined
Jul 23, 2011
Messages
20
Reaction score
0
hello there.. just wanna ask if someone can help me on this problem
i cant install the installls.bat and installgs.bat and the other ".bat".
all of the database has "db_owner" rights and dont know really where the problem is.

----- and just wanna ask if someone had tried using "127.0.0.1" ip and worked?
thanks
 
Joined
Aug 20, 2010
Messages
1,387
Reaction score
253
hello there.. just wanna ask if someone can help me on this problem
i cant install the installls.bat and installgs.bat and the other ".bat".
all of the database has "db_owner" rights and dont know really where the problem is.

----- and just wanna ask if someone had tried using "127.0.0.1" ip and worked?
thanks

127.0.0.1 doesn't work. Use your LAN-IP NOT your WAN-ip adress.
 
Newbie Spellweaver
Joined
Jul 23, 2011
Messages
20
Reaction score
0
i have already installed the ".bats" my only problem is the client.. i cant work it out.. sad to say but i dont have a "LAN IP".... this is my ip
10.121.16.214 <--- and this is he ip ive been using.. dont know how to make my own customize client.exe.. or how to bypass the hackshield...

i use this client for test

thanks
 
Joined
Aug 20, 2010
Messages
1,387
Reaction score
253
i have already installed the ".bats" my only problem is the client.. i cant work it out.. sad to say but i dont have a "LAN IP".... this is my ip
10.121.16.214 <--- and this is he ip ive been using.. dont know how to make my own customize client.exe.. or how to bypass the hackshield...

i use this client for test

thanks

Did you try to run it as admin?
 
Newbie Spellweaver
Joined
Jul 23, 2011
Messages
20
Reaction score
0
yeah,,, i run as administrator.i got stuck when hackshield is loading.. and also in luckys client.. it gives me an error saying"wrong execute" and 'tfhe operating memory is out oof source"



----maybe the launcher is the one messing this.. how can i edit the ip in the launcher?
 
Last edited:
Newbie Spellweaver
Joined
Feb 8, 2009
Messages
43
Reaction score
1
lucky40990 - [Release] KR 1.18 IRIS  + DB + MOVIE - RaGEZONE Forums


Anyone can help me fix this bug .
and i can't run IrisONline - Agent4GameServer,IrisONline - GameServer,
IrisONline - LoginServer SERVICES.
I am uing this client ver 1.18.56033 follow
this site



thanks
 
Last edited:
Initiate Mage
Joined
Nov 10, 2011
Messages
1
Reaction score
0
Hello Lucky could you be kind to repost your links or reopen your FTP?
All the links are dead and i didint find a beter release in the forum.

Best reagards
KhrysT Lords
 
Newbie Spellweaver
Joined
Apr 26, 2012
Messages
47
Reaction score
21
I have Installed ur Server . Login ok but when i choose server i got "Failed to connect..." error. who can help me with this problem . Thanks so much
 
Newbie Spellweaver
Joined
Apr 26, 2012
Messages
47
Reaction score
21
i use Client + Server lucky shared . and i edited IP at patch.ini . and in server i edited like some tutorial at Tutorial box. can u write down what exactly files need edit and what line need edit
 
Experienced Elementalist
Joined
Apr 26, 2004
Messages
217
Reaction score
15
Help me please,
My client dosn't read packed data files
I am using the compiled 1.18.201 client source code.

mapeditor and regentool are read packed data successfully,
but only my client dosn't read it

I think that the Unicode character set cause this problem
mapeditor and regentool are using Multibyte character set

If someone have knolodge about this problem, plz hel me

----------------------------- FilePackSystem.cpp --------------------------------

bool cFilePackSystem::Init()
{
/// 파일 팩을 검색
cFileFinder fileFinder;
cStringT findPath;
cStringT packName;
cStringT pathName;
for( unsigned int i = FOLDER_DATA; i < FOLDER_COUNT; ++i )
{
findPath.Format( _T("%s*.pack"), gFolderNames );
if( fileFinder.FindFirst( findPath.Cstr() ) == false )
continue;
do
{
cFilePack* pack = new cFilePack;
/// 파일 팩을 엶
packName.Format( _T("%s%s"), gFolderNames, fileFinder.GetFileName() );
if( pack->Open( packName.Cstr(), cFilePack::OPEN_READONLY ) == false )
{
delete pack;
MessageBox(NULL, _T("Failed Open pack file.. reinstall client."), _T("Error"), MB_OK | MB_ICONEXCLAMATION );
continue;
}
/// 패스워드를 설정
//pack->SetPassword( PACK_PASSWORD );
pack->SetPasswordEx( g_packKey.GetKey(), g_packKey.GetKeyLenth() );
/// 파일 팩을 추가
unsigned int packIndex = mFilePackArray.GetSize();
unsigned int fileIndex;
mFilePackArray.PushBack( pack );
/// 파일 인덱스를 맵에 추가
cFileInPackInfo fipi;
for( unsigned int j = 0, jend = pack->GetNumFiles(); j < jend; ++j )
{
pack->GetFileInfo( &fipi, j );
if( fipi.IsDirectory() )
continue;
fileIndex = j;
fileIndex <<= 8;
fileIndex += packIndex;
#ifdef _UNICODE
///
char cstr[MAX_PATH] = {0,};
ConvertToAscii( fipi.GetPathName().Cstr(), cstr, MAX_PATH );
cString tempName = cstr;
cStringW tempNameW = fipi.GetPathName().Cstr();
#else
///
wchar_t cstr[MAX_PATH] = {0,};
ConvertToUnicode( fipi.GetPathName().Cstr(), cstr, MAX_PATH );
cString tempName = fipi.GetPathName().Cstr();
cStringW tempNameW = cstr;
#endif
tempName.ToLower();
tempNameW.ToLower();
/// 명확성 검사. fipi.pathname 과 filename을 비교하여 현재 맞는 경로에 있는 pack 파일을 열었는지 검사.
/// 게임 설치 폴더 안에 pack 파일이 다른 곳으로 옮겨 졌거나, 다른 이름으로 저장되었다면 현재 pack 파일 무시.
if( _tcsnicmp( packName.Cstr(), fipi.GetPathName().Cstr(), _tcslen(packName.Cstr()) - 5 ) != 0 )
break;
mFileIndexMap.Insert( tempName, fileIndex );
mFileIndexMapW.Insert( tempNameW, fileIndex );
}
}
while( fileFinder.FindNext() );
}
fileFinder.Close();
return true;
}


What exactly the error client show when u boot up with those pack files?
 
Joined
Mar 25, 2007
Messages
660
Reaction score
309
"Failed to Init Render System"

this message is shown.
brightness.fx <-- this file is requested by Renderer. but client can't read resource.pack


/// 이펙트를 생성
if( CreateEffect( "./script/resource/brightness.fx", &mBrightEffect ) == false || mBrightEffect == 0 )
{
assert( 0 );
return false;
}
 
Back
Top