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!

Icarus 3.1 VM

Joined
Jul 8, 2008
Messages
306
Reaction score
338
@Matar which client does it come from ? Gamecon or Hange ?
For bins and xml, it's good.
I have problems with new drops, they are not in the client.
There are errors on maps and portals (it takes longer to correct and synchronize for maps).
 
Experienced Elementalist
Joined
Jul 22, 2020
Messages
201
Reaction score
240
@Matar which client does it come from ? Gamecon or Hange ?
For bins and xml, it's good.
I have problems with new drops, they are not in the client.
There are errors on maps and portals (it takes longer to correct and synchronize for maps).

its Project Icarus 3.6 found it on my old hard drive its working i can play with it and its the same exe file version as of 3.1 client

ok tell me what you need i will try to upload the files one by one till it works
 
Newbie Spellweaver
Joined
Jan 14, 2009
Messages
64
Reaction score
5
@Matar




I mean, I want to change this image.

CRITICO / RESISTIU

Which file should I modify?

AND

There are also legendary dungeons that require tickets when entering dungeons, for example, <40 lv seal> and <50 lv seal> items are required to enter legendary dungeon. However, when entering the dungeon, the server does not ask whether the seal item is necessary. Which file should I modify for this related setting?




And these three dungeons are not entered with the following message printed out.

 
Last edited:
Experienced Elementalist
Joined
Jul 22, 2020
Messages
201
Reaction score
240
extract gamelibs.npk and check there it has all icons in game
 
Newbie Spellweaver
Joined
Jul 8, 2012
Messages
25
Reaction score
8
@Matar




I mean, I want to change this image.

CRITICO / RESISTIU

Which file should I modify?

AND

There are also legendary dungeons that require tickets when entering dungeons, for example, <40 lv seal> and <50 lv seal> items are required to enter legendary dungeon. However, when entering the dungeon, the server does not ask whether the seal item is necessary. Which file should I modify for this related setting?




And these three dungeons are not entered with the following message printed out.




For change "Critico/Resistiu" just pick .swf, i think this is damagedirector.swf, or pick .swf kr/valofe and put ingame folder \Game\Libs\UI\Resources\swf
 
Experienced Elementalist
Joined
Jul 22, 2020
Messages
201
Reaction score
240
For change "Critico/Resistiu" just pick .swf, i think this is damagedirector.swf, or pick .swf kr/valofe and put ingame folder \Game\Libs\UI\Resources\swf

nice

jmDQQGX - Icarus 3.1 VM - RaGEZONE Forums



 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Jan 14, 2009
Messages
64
Reaction score
5
@lamaine Matar

jesus... thx guys :)
and
this 3 dungeons,



Is it difficult to solve the problem of not being able to enter these three dungeons?
 
Initiate Mage
Joined
Jul 16, 2022
Messages
3
Reaction score
0
How can A VIRTUAL machine take up a small amount of memory
 
Newbie Spellweaver
Joined
Jan 14, 2009
Messages
64
Reaction score
5
@Matar orion13

check plz

Server/Commonconfig/ConstantConf.xml

<contenst type="NameChangeSystem" on="1" comment="이름변경시스템" />
<contenst type="Durability" on="1" comment="정령탄" />

Even though it's set to "1",

2 system are not working... it's bug?
 
Newbie Spellweaver
Joined
Jul 8, 2012
Messages
25
Reaction score
8
@lamaine @Matar

jesus... thx guys :)
and
this 3 dungeons,



Is it difficult to solve the problem of not being able to enter these three dungeons?

1 - Join Guild
2 - Configure StrongHold (system pvp)
3 - Appoint Knight for join the system
4 - Win strongHold

There are two difficulties, the first one anyone can enter, the second only stop the knights who won the stronghold, it's a farm mine
 
Newbie Spellweaver
Joined
Jan 14, 2009
Messages
64
Reaction score
5
1 - Join Guild
2 - Configure StrongHold (system pvp)
3 - Appoint Knight for join the system
4 - Win strongHold

There are two difficulties, the first one anyone can enter, the second only stop the knights who won the stronghold, it's a farm mine



Thank you for your information. :)
and I found another bug. The nickname change item does not work. Although the nickname change option in the Conf file has been changed to Allow, it is not available.



its Project Icarus 3.6 found it on my old hard drive its working i can play with it and its the same exe file version as of 3.1 client

ok tell me what you need i will try to upload the files one by one till it works




Can you make IntegrationServer ? Currently, the Integration Server is not working, so I think this is necessary.
 
Joined
Jul 8, 2008
Messages
306
Reaction score
338
@buzzrudxo I solved the problem for the Guild Mark Change.
Guild data is stored in the DB Icarus_Char_Database / Table_Guildbase
GuildMarkID is defined as a "varchar"
The procedure that manages the change is "Update_Char_GuildMark_Change_proc"
In this proc. GuildMarkID is defined as a "nvarchar"
To correct the problem, you just have to change in the procedure the nvarchar to varchar
I tested, I was able to change the Guild Mark :D:

Before

ALTER PROCEDURE [dbo].[Update_Char_GuildMark_Change_proc]
DBKey BIGINT,
GuiLdMarkID nvarchar(22)
...

After

ALTER PROCEDURE [dbo].[Update_Char_GuildMark_Change_proc]
DBKey BIGINT,
GuiLdMarkID varchar(22)
...

I put the fix in Attachment.
Execute it in a Query
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Apr 19, 2018
Messages
8
Reaction score
0
hello everyone
thanks for sharing matar
i want to install the files on the server for this. please specify the requirements.
 
Newbie Spellweaver
Joined
Jan 14, 2009
Messages
64
Reaction score
5
buzzrudxo I solved the problem for the Guild Mark Change.
Guild data is stored in the DB Icarus_Char_Database / Table_Guildbase
GuildMarkID is defined as a "varchar"
The procedure that manages the change is "Update_Char_GuildMark_Change_proc"
In this proc. GuildMarkID is defined as a "nvarchar"
To correct the problem, you just have to change in the procedure the nvarchar to varchar
I tested, I was able to change the Guild Mark :D:

Before


ALTER PROCEDURE [dbo].[Update_Char_GuildMark_Change_proc]
DBKey BIGINT,
GuiLdMarkID nvarchar(22)
...

After

ALTER PROCEDURE [dbo].[Update_Char_GuildMark_Change_proc]
DBKey BIGINT,
GuiLdMarkID varchar(22)
...

I put the fix in Attachment.
Execute it in a Query



GOOD. Thanks man. and..
Please check the settings below, too.
A non-functional system.

Server/Commonconfig/ConstantConf.xml

<Content Type="Name Change System" on="1" comment="Content Change" />
<Content Type="Durability" on="1" Comments="Durability" />

and Can't you make the integrated dungeon work?
 
Newbie Spellweaver
Joined
Nov 23, 2013
Messages
36
Reaction score
6
I also have 16 GB of memory
It can be reduced. Increase the amount in the Virtual memory to 16 GB (In the windows of the virtual machine).
Windows Update - Disable , Windows Defender - Disable ( )
After doing these you can reduce to 8 GB
 
Last edited:
Newbie Spellweaver
Joined
May 21, 2019
Messages
13
Reaction score
0
Increase the amount in the Virtual memory to 16 GB ?? and clien run ??
 
Experienced Elementalist
Joined
Jul 22, 2020
Messages
201
Reaction score
240
Increase the amount in the Virtual memory to 16 GB ?? and clien run ??

he means after you setup your Virtual memory to 16gb and reduce you VM to 8gb

Virtual memory = paging file on vm system - Advanced system settings - Advanced tab - Performance settings - advanced tab - Virtual memory



How can A VIRTUAL machine take up a small amount of memory

by Virtual memory on VM server
 
Newbie Spellweaver
Joined
May 21, 2019
Messages
13
Reaction score
0
after you setup your Virtual memory to 16gb and reduce you VM to 8gb
where ? and how do ?
sory im chicken
 
Back
Top