Icarus 3.1 VM

Page 6 of 12 FirstFirst 123456789101112 LastLast
Results 126 to 150 of 295
  1. #126
    Newbie lamaine is online now
    MemberRank
    Jun 2022 Join Date
    15Posts

    Re: Icarus 3.1 VM

    Quote Originally Posted by buzzrudxo View Post
    @Matar


    https://imgur.com/a/a4QzqzI

    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?


    https://imgur.com/a/qgMA0aH

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

    https://imgur.com/a/Bw4pTpr


    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

  2. #127
    Elite Member Matar is online now
    Member +Rank
    Jul 2020 Join Date
    194Posts

    Re: Icarus 3.1 VM

    Quote Originally Posted by lamaine View Post
    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





  3. #128
    Member buzzrudxo is offline
    MemberRank
    Jan 2009 Join Date
    56Posts

    Re: Icarus 3.1 VM

    @lamaine @Matar

    jesus... thx guys :)
    and
    this 3 dungeons,
    https://m.imgur.com/a/qgMA0aH
    https://imgur.com/a/Bw4pTpr

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

  4. #129
    Newbie cike1 is offline
    MemberRank
    Jul 2022 Join Date
    3Posts

    Re: Icarus 3.1 VM

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

  5. #130
    Member buzzrudxo is offline
    MemberRank
    Jan 2009 Join Date
    56Posts

    Re: Icarus 3.1 VM

    @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?

  6. #131
    Newbie lamaine is online now
    MemberRank
    Jun 2022 Join Date
    15Posts

    Re: Icarus 3.1 VM

    Quote Originally Posted by buzzrudxo View Post
    @lamaine @Matar

    jesus... thx guys :)
    and
    this 3 dungeons,
    https://m.imgur.com/a/qgMA0aH
    https://imgur.com/a/Bw4pTpr

    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

  7. #132
    Member buzzrudxo is offline
    MemberRank
    Jan 2009 Join Date
    56Posts

    Re: Icarus 3.1 VM

    Quote Originally Posted by lamaine View Post
    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.

    - - - Updated - - -

    Quote Originally Posted by Matar View Post
    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.

  8. #133
    [VIP] orion13 is offline
    [VIP] MemberRank
    Jul 2008 Join Date
    FranceLocation
    304Posts

    Re: Icarus 3.1 VM

    @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

    Spoiler:


    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
    Attached Files Attached Files

  9. #134
    Newbie ByExlab is offline
    MemberRank
    Apr 2018 Join Date
    TurkeyLocation
    8Posts

    Re: Icarus 3.1 VM

    hello everyone
    thanks for sharing matar
    i want to install the files on the server for this. please specify the requirements.

  10. #135
    Member buzzrudxo is offline
    MemberRank
    Jan 2009 Join Date
    56Posts

    Re: Icarus 3.1 VM

    Quote Originally Posted by orion13 View Post
    @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

    Spoiler:


    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?

  11. #136
    Newbie ckdtjqtbvj is offline
    MemberRank
    Jun 2014 Join Date
    12Posts

    Re: Icarus 3.1 VM

    My computer RAM is 16GB, but can't I lower the VM RAM usage?

  12. #137
    Member arabela is offline
    MemberRank
    Nov 2013 Join Date
    33Posts

    Re: Icarus 3.1 VM

    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 ( https://windowsreport.com/kill-antim...le-windows-10/ )
    After doing these you can reduce to 8 GB
    Last edited by arabela; 24-07-22 at 03:41 PM.

  13. #138
    Newbie dawren is offline
    MemberRank
    May 2019 Join Date
    13Posts

    Re: Icarus 3.1 VM

    Increase the amount in the Virtual memory to 16 GB ?? and clien run ??

  14. #139
    Member arabela is offline
    MemberRank
    Nov 2013 Join Date
    33Posts

    Re: Icarus 3.1 VM

    It's for the server

  15. #140
    Elite Member Matar is online now
    Member +Rank
    Jul 2020 Join Date
    194Posts

    Re: Icarus 3.1 VM

    Quote Originally Posted by dawren View Post
    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

    - - - Updated - - -

    Quote Originally Posted by cike1 View Post
    How can A VIRTUAL machine take up a small amount of memory
    by Virtual memory on VM server

  16. #141
    Newbie dawren is offline
    MemberRank
    May 2019 Join Date
    13Posts

    Re: Icarus 3.1 VM

    after you setup your Virtual memory to 16gb and reduce you VM to 8gb
    where ? and how do ?
    sory im chicken

  17. #142
    Elite Member Matar is online now
    Member +Rank
    Jul 2020 Join Date
    194Posts

    Re: Icarus 3.1 VM

    Quote Originally Posted by dawren View Post
    after you setup your Virtual memory to 16gb and reduce you VM to 8gb
    where ? and how do ?
    sory im chicken
    https://www.youtube.com/watch?v=jEU1OuL8LJA

  18. #143
    Member arabela is offline
    MemberRank
    Nov 2013 Join Date
    33Posts

    Re: Icarus 3.1 VM

    dawren
    IcarusVM3.1 (Not to be Power on) Press "Edit virtual machine settings" and reduce the memory to 8GB

  19. #144
    Member buzzrudxo is offline
    MemberRank
    Jan 2009 Join Date
    56Posts

    Re: Icarus 3.1 VM

    @Matar @orion13

    The official server's skill xml file is encrypted, is there any tool to decrypt it?

  20. #145
    Elite Member Matar is online now
    Member +Rank
    Jul 2020 Join Date
    194Posts

    Re: Icarus 3.1 VM

    Quote Originally Posted by buzzrudxo View Post
    @Matar @orion13

    The official server's skill xml file is encrypted, is there any tool to decrypt it?
    still not found one

    do you have an official server ?

    as @lamaine said you dont need decrypted files on client side to prevent editing it

  21. #146
    Member Vortex01 is offline
    MemberRank
    Jan 2021 Join Date
    32Posts

    Re: Icarus 3.1 VM

    is there a server exe file that works with an encrypted skill xml file?(KR)

  22. #147
    Member arabela is offline
    MemberRank
    Nov 2013 Join Date
    33Posts

    Re: Icarus 3.1 VM

    Something is wrong, items disappear from the inventory, bank :(

  23. #148
    Elite Member Matar is online now
    Member +Rank
    Jul 2020 Join Date
    194Posts

    Re: Icarus 3.1 VM

    Quote Originally Posted by arabela View Post
    Something is wrong, items disappear from the inventory, bank :(
    do you use gm helper CTRL+] there is option on it to empty inventory ?

  24. #149
    Member arabela is offline
    MemberRank
    Nov 2013 Join Date
    33Posts

    Re: Icarus 3.1 VM

    I used it to make lvl 70. Now I play normally and I see that items disappear :(
    ExtractDACResult_WIN-VJ3KK2RGVGK_ICARUS_Char_Database_20220725
    "Microsoft.SqlServer.Dac.DacServicesException: Validation of the schema model for data package failed. Error SQL71564: Error validating element [projectghost]: The element [projectghost] has been orphaned from its login and cannot be deployed. Error SQL71564: Error validating element [webicarus]: The element [webicarus] has been orphaned from its login and cannot be deployed. Error SQL71564: Error validating element [ss]: The element [ss] has been orphaned from its login and cannot be deployed. Error SQL71501: Error validating element [dbo].[osp_char_select_search_character_proc]: Procedure: [dbo].[osp_char_select_search_character_proc] contains an unresolved reference to an object. Either the object does not exist or the reference is ambiguous because it could refer to any of the following objects: [dbo].[Table_CharBase].[Level] or [dbo].[Table_CharItem].[Level]. Error SQL71501: Error validating element [dbo].[Select_SealedFellowItemInfo_Proc]: Procedure: [dbo].[Select_SealedFellowItemInfo_Proc] contains an unresolved reference to an object. Either the object does not exist or the reference is ambiguous because it could refer to any of the following objects: [dbo].[Table_CharItem].[Exp] or [dbo].[Table_CharSealedFellow].[Exp]. at Microsoft.SqlServer.Dac.ExtractOperation.<>c__DisplayClass30_0.<CreateValidationOperation>b__0(Object operation, CancellationToken token) at Microsoft.SqlServer.Dac.Operation.Microsoft.SqlServer.Dac.IOperation.Run(OperationContext context) at Microsoft.SqlServer.Dac.ReportMessageOperation.Microsoft.SqlServer.Dac.IOperation.Run(OperationContext context) at Microsoft.SqlServer.Dac.OperationExtension.CompositeOperation.Microsoft.SqlServer.Dac.IOperation.Run(OperationContext context) at Microsoft.SqlServer.Dac.ExtractOperation.<>c__DisplayClass34_0.<Microsoft.SqlServer.Dac.IOperation.Run>b__0() at Microsoft.Data.Tools.Schema.Sql.Dac.OperationLogger.Capture(Action action) at Microsoft.SqlServer.Dac.ExtractOperation.Microsoft.SqlServer.Dac.IOperation.Run(OperationContext context) at Microsoft.SqlServer.Dac.OperationExtension.CompositeOperation.Microsoft.SqlServer.Dac.IOperation.Run(OperationContext context) at Microsoft.SqlServer.Dac.OperationExtension.Execute(IOperation operation, DacLoggingContext loggingContext, CancellationToken cancellationToken) at Microsoft.SqlServer.Dac.DacServices.Extract(Func`1 streamGetter, String databaseName, String applicationName, Version applicationVersion, String applicationDescription, IEnumerable`1 tables, DacExtractOptions extractOptions, Nullable`1 cancellationToken, DacLoggingContext extractLoggingContext, String targetPath) at Microsoft.SqlServer.Dac.DacServices.Extract(String targetPath, String databaseName, String applicationName, Version applicationVersion, String applicationDescription, IEnumerable`1 tables, DacExtractOptions extractOptions, Nullable`1 cancellationToken) at Microsoft.SqlServer.Management.Dac.ExtractDac.ExtractUIModel.Extract() at Microsoft.SqlServer.Management.Dac.ExtractDac.BuildDacPage.worker_DoWork(Object sender, DoWorkEventArgs e)"
    Last edited by arabela; 25-07-22 at 01:03 PM.

  25. #150
    Newbie sfcm123 is offline
    MemberRank
    Apr 2015 Join Date
    9Posts

    Re: Icarus 3.1 VM

    There is not IntegrationServer ?



Advertisement