Jump to content

Recommended Posts

Posted

Help me please?

 

Why system thai support l2jserver freya no support l2jserver Hive five beta

 

System for thai bug no support l2jserver Hive five Beta.

 

untitled.JPG

 

How to repair or edit file my system.

 

I want use system en.

 

If you can edit please reload send link to me.

 

This link system en. please add thai language

http://www.4shared.com/file/fjZtwr9m/High_Five.html

 

This link system th.no support l2jserver hive five beta

http://www.4shared.com/file/Ynqlsm-7/System-thai.html

 

 

Posted

Help me please?

 

System for thai bug no support l2jserver Hive five Beta.

 

I want use system en.

 

How to edit or change system-client support thai language?

 

If you can edit please reload send link to me.

 

Thank you so much.

 

System en.

http://www.4shared.com/file/filljK55/High_Five.html

 

System th.

http://www.4shared.com/file/Ynqlsm-7/System-thai.html

 

well I know is something in the file Localization.ini but not sure because never investigate it more a deep, but well maybe you can make it work :) good luck.

 

[LanguageSet]

Language=1

0=Korea

1=English

2=Japan

3=Taiwan

4=China

5=Thailand

6=Philippine

7=Indonesia

8=Russia

EnableEngSelection=false

Posted

I don't think just with 2 files can modify it ;)

 

 

LOL

 

THnwE3gVo7.PNG

 

It's my creation for support french & english langage , with 2 files ...  stop blablabla

 

 

learns it and modify compiled code for use of multiple langages of your choice ​​simultaneously, not korea, thai, japanese etc ... For custom langage game..

 

function OnLoad()
{
local int i;
local int nMultiSample;
local bool bEnableEngSelection;
local ELanguageType Language;
local string strResolution;

dScript = DialogBox(GetScript("DialogBox"));

bPartyMember = false;
bPartyMaster = false;

if(CREATE_ON_DEMAND==0)
	OnRegisterEvent();

if(CREATE_ON_DEMAND==0)
	InitHandle();
else
	InitHandleCOD();

m_bAirState = false;

RegisterState( "OptionWnd", "GamingState" );
RegisterState( "OptionWnd", "LoginState" );

GetShaderVersion( nPixelShaderVersion, nVertexShaderVersion );

GetResolutionList( ResolutionList );

SetOptionBool( "Game", "HideDropItem", false );

for( i = 0; i < ResolutionList.Length; ++i )
{
	strResolution = "" $ ResolutionList[ i ].nWidth $ "*" $ ResolutionList[ i ].nHeight $ " " $ ResolutionList[ i ].nColorBit $ "bit";
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.ResBox", strResolution );
}

ResetRefreshRate();

nMultiSample = GetMultiSample();
if( 0 == nMultiSample )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 869 );
	class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.AABox" );
}
else if( 1 == nMultiSample )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 869 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 870 );
	class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.AABox" );
}
else if( 2 == nMultiSample )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 869 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 870 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 871 );
	class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.AABox" );
}

bEnableEngSelection = IsEnableEngSelection();
Language = GetLanguage();
switch( Language )
{
case LANG_None:
	break;
case LANG_Korean:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Korean" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_English:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	break;
case LANG_Japanese:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Japanese" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Taiwan:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Chinese(Taiwan)" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Chinese:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "China" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Thai:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Thai" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Philippine:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	break;
default:
	break;
}

if( CanUseHDR() )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.HDRBox", 1230 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.HDRBox", 1231 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.HDRBox", 1232 );
}

LoadVideoOption();
LoadAudioOption();
LoadGameOption();

bShow = false;
}

Posted

I don't think just with 2 files can modify it ;)

 

 

LOL

 

THnwE3gVo7.PNG

 

It's my creation for support french & english langage , with 2 files ...  stop blablabla

 

 

learns it and modify compiled code for use of multiple langages of your choice ​​simultaneously, not korea, thai, japanese etc ... For custom langage game..

 

function OnLoad()
{
local int i;
local int nMultiSample;
local bool bEnableEngSelection;
local ELanguageType Language;
local string strResolution;

dScript = DialogBox(GetScript("DialogBox"));

bPartyMember = false;
bPartyMaster = false;

if(CREATE_ON_DEMAND==0)
	OnRegisterEvent();

if(CREATE_ON_DEMAND==0)
	InitHandle();
else
	InitHandleCOD();

m_bAirState = false;

RegisterState( "OptionWnd", "GamingState" );
RegisterState( "OptionWnd", "LoginState" );

GetShaderVersion( nPixelShaderVersion, nVertexShaderVersion );

GetResolutionList( ResolutionList );

SetOptionBool( "Game", "HideDropItem", false );

for( i = 0; i < ResolutionList.Length; ++i )
{
	strResolution = "" $ ResolutionList[ i ].nWidth $ "*" $ ResolutionList[ i ].nHeight $ " " $ ResolutionList[ i ].nColorBit $ "bit";
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.ResBox", strResolution );
}

ResetRefreshRate();

nMultiSample = GetMultiSample();
if( 0 == nMultiSample )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 869 );
	class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.AABox" );
}
else if( 1 == nMultiSample )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 869 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 870 );
	class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.AABox" );
}
else if( 2 == nMultiSample )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 869 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 870 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 871 );
	class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.AABox" );
}

bEnableEngSelection = IsEnableEngSelection();
Language = GetLanguage();
switch( Language )
{
case LANG_None:
	break;
case LANG_Korean:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Korean" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_English:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	break;
case LANG_Japanese:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Japanese" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Taiwan:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Chinese(Taiwan)" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Chinese:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "China" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Thai:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Thai" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Philippine:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	break;
default:
	break;
}

if( CanUseHDR() )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.HDRBox", 1230 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.HDRBox", 1231 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.HDRBox", 1232 );
}

LoadVideoOption();
LoadAudioOption();
LoadGameOption();

bShow = false;
}

Posted

I don't think just with 2 files can modify it ;)

 

 

LOL

 

THnwE3gVo7.PNG

 

It's my creation for support french & english langage , with 2 files ...  stop blablabla

 

 

learns it and modify compiled code for use of multiple langages of your choice ​​simultaneously, not korea, thai, japanese etc ... For custom langage game..

 

function OnLoad()
{
local int i;
local int nMultiSample;
local bool bEnableEngSelection;
local ELanguageType Language;
local string strResolution;

dScript = DialogBox(GetScript("DialogBox"));

bPartyMember = false;
bPartyMaster = false;

if(CREATE_ON_DEMAND==0)
	OnRegisterEvent();

if(CREATE_ON_DEMAND==0)
	InitHandle();
else
	InitHandleCOD();

m_bAirState = false;

RegisterState( "OptionWnd", "GamingState" );
RegisterState( "OptionWnd", "LoginState" );

GetShaderVersion( nPixelShaderVersion, nVertexShaderVersion );

GetResolutionList( ResolutionList );

SetOptionBool( "Game", "HideDropItem", false );

for( i = 0; i < ResolutionList.Length; ++i )
{
	strResolution = "" $ ResolutionList[ i ].nWidth $ "*" $ ResolutionList[ i ].nHeight $ " " $ ResolutionList[ i ].nColorBit $ "bit";
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.ResBox", strResolution );
}

ResetRefreshRate();

nMultiSample = GetMultiSample();
if( 0 == nMultiSample )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 869 );
	class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.AABox" );
}
else if( 1 == nMultiSample )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 869 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 870 );
	class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.AABox" );
}
else if( 2 == nMultiSample )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 869 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 870 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.AABox", 871 );
	class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.AABox" );
}

bEnableEngSelection = IsEnableEngSelection();
Language = GetLanguage();
switch( Language )
{
case LANG_None:
	break;
case LANG_Korean:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Korean" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_English:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	break;
case LANG_Japanese:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Japanese" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Taiwan:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Chinese(Taiwan)" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Chinese:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "China" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Thai:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "Thai" );
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	if( bEnableEngSelection )
		class'UIAPI_WINDOW'.static.EnableWindow( "OptionWnd.LanguageBox" );
	else
		class'UIAPI_WINDOW'.static.DisableWindow( "OptionWnd.LanguageBox" );
	break;
case LANG_Philippine:
	class'UIAPI_COMBOBOX'.static.AddString( "OptionWnd.LanguageBox", "English" );
	break;
default:
	break;
}

if( CanUseHDR() )
{
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.HDRBox", 1230 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.HDRBox", 1231 );
	class'UIAPI_COMBOBOX'.static.SYS_AddString( "OptionWnd.HDRBox", 1232 );
}

LoadVideoOption();
LoadAudioOption();
LoadGameOption();

bShow = false;
}

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • whats password from the archivie ?
    • All that shit are false positives of the vanganth cliext, sources are well and who sell it is a big scammer
    • Information Selling a premium Lineage 2 High Five (L2J) project with active development, available by subscription. Includes Git support and access to compiled or full source code. Ideal for serious server owners seeking stability and performance, uniqueness and well-done features.   General Project Specifications: JDK Version: 23 -> 24 Chronicle: HighFive Structure: Core & Datapack merged into a single project Database: MariaDB Database Driver: HicariCP GIT Website: gitlab.com   Features include (but are not limited to):   1. Tournament Single & Party (Check Youtube Video) 2. Faction (Check Youtube Video) 3. Event Engine (Check Youtube Video) 4. Sell Buff System (Check Youtube Video) 5. Start UP System (Check Youtube Video) 6. User Panel 7. Visual - Dress me System 8. Donate Store 9. Automatic Farm System (Check Youtube Video) 10. Captcha (Anti-BOT) (Check Youtube Video) 11. Auction (Check Youtube Video) 12. Vote (API) 13. Admin Real Time Balance (Check Youtube Video) 14. Achievements (Check Youtube Video) 15. Daily Mission (Check Youtube Video) 16. A.I. Bot (Check Youtube Video) 17. Rebirth 18. Daily Reward  19. Skill Tree - Ability System 20. Craft System 21. Twitch Automatic Reward (Check Youtube Video) 22. Quiz Game (Check Youtube Video) 23. Automatic Item Enchant (Check Youtube Video) 24. Secondary Auth Using Google Authenticator (Check Youtube Video) 25. Gm Shop - Gatekeeper - Scheme Buffer   How to get Access (Payment Subscription): To get Access you either pay monthly subscription to GIT for source or Compiled. Project is currently active and has at least 1-2 commit / day.  Clients in both Compiled & Source subscription can request features or any addon in already existing mods inside discord.   Price per Month (Source) in GIT: 250 Eur Price per Month (Compiled) in GIT: 100 Eur   Contact: To get Access or ask further information join discord  https://discord.gg/gKAsAhJNuq      
    • We're officially closing the current season today. While we focus on refining the Essence project, our resources will temporarily shift toward supporting the Classic server.
  • Topics

×
×
  • Create New...