[Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

Page 20 of 31 FirstFirst ... 10121314151617181920212223242526272830 ... LastLast
Results 286 to 300 of 452
  1. #286
    Account Upgraded | Title Enabled! flyba is offline
    MemberRank
    Apr 2006 Join Date
    PhilippinesLocation
    391Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Hello guys i run the server for test all works fine but when client connects it has error on dataserver/database it says

    [07:31:51] [test] - characters: [ohyuo][sdfsdf][][][]
    [07:31:51] [test] - Account Data: [SU:1][RF:1][Expanded WH:0]
    [07:31:54] [SQL Error] Error executing: SELECT cLevel, mLevel, Class, LevelUpPoint, mlPoint, Experience, mlExperience, mlNextExp, Strength, Dexterity, Vitality, Energy, Money, Life, MaxLife, Mana, MaxMana, MapNumber, MapPosX, MapPosY, MapDir, PkCount, PkLevel, PkTime, CtlCode, Leadership, ChatLimitTime, FruitPoint, RESETS, Married, MarryName, InventoryExpansion, WinDuels, LoseDuels, BlockChatTime, PenaltyMask, Ruud FROM Character WHERE Name='sdfsdf' AND AccountID='test'
    [07:31:54] SQLSTATE: 42S22, Diagnosis: [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'Ruud'

    im using my database from season 9 E2 with existing accounts

  2. #287
    (づ。◕‿‿◕。) Natzugen is offline
    MemberRank
    Jun 2014 Join Date
    ElbelandLocation
    1,858Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Quote Originally Posted by flyba View Post
    Hello guys i run the server for test all works fine but when client connects it has error on dataserver/database it says

    [07:31:51] [test] - characters: [ohyuo][sdfsdf][][][]
    [07:31:51] [test] - Account Data: [SU:1][RF:1][Expanded WH:0]
    [07:31:54] [SQL Error] Error executing: SELECT cLevel, mLevel, Class, LevelUpPoint, mlPoint, Experience, mlExperience, mlNextExp, Strength, Dexterity, Vitality, Energy, Money, Life, MaxLife, Mana, MaxMana, MapNumber, MapPosX, MapPosY, MapDir, PkCount, PkLevel, PkTime, CtlCode, Leadership, ChatLimitTime, FruitPoint, RESETS, Married, MarryName, InventoryExpansion, WinDuels, LoseDuels, BlockChatTime, PenaltyMask, Ruud FROM Character WHERE Name='sdfsdf' AND AccountID='test'
    [07:31:54] SQLSTATE: 42S22, Diagnosis: [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'Ruud'

    im using my database from season 9 E2 with existing accounts
    Your database doesn't have the column Ruud in character table

  3. #288
    Novice galuacon is offline
    MemberRank
    Jul 2015 Join Date
    2Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Hi all,

    I tried to set on IGC_Common.ini

    ;-------------------------------------------------------------------------------------------------------------;-- Switch 16/28 Max Options can be added using Jewel of Life :: VALUES 0/1;-------------------------------------------------------------------------------------------------------------Is28Option = 1

    But when i use Jewel of life to upgrade item , it limit only +16

    Should i check other file to enhance to + 28 option ?

  4. #289
    Proficient Member PheonixMU is offline
    MemberRank
    Apr 2006 Join Date
    SomeWhere :DLocation
    150Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Is someone able to repack this will the bugs fixed?

  5. #290
    Enthusiast GameMoiRa is offline
    MemberRank
    Dec 2019 Join Date
    VietnamLocation
    30Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Quote Originally Posted by flyba View Post
    Hello guys i run the server for test all works fine but when client connects it has error on dataserver/database it says

    [07:31:51] [test] - characters: [ohyuo][sdfsdf][][][]
    [07:31:51] [test] - Account Data: [SU:1][RF:1][Expanded WH:0]
    [07:31:54] [SQL Error] Error executing: SELECT cLevel, mLevel, Class, LevelUpPoint, mlPoint, Experience, mlExperience, mlNextExp, Strength, Dexterity, Vitality, Energy, Money, Life, MaxLife, Mana, MaxMana, MapNumber, MapPosX, MapPosY, MapDir, PkCount, PkLevel, PkTime, CtlCode, Leadership, ChatLimitTime, FruitPoint, RESETS, Married, MarryName, InventoryExpansion, WinDuels, LoseDuels, BlockChatTime, PenaltyMask, Ruud FROM Character WHERE Name='sdfsdf' AND AccountID='test'
    [07:31:54] SQLSTATE: 42S22, Diagnosis: [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name 'Ruud'

    im using my database from season 9 E2 with existing accounts
    Fix like this: add column Ruud to your table Character

    Code:
    USE [MuOnline]
    GO
    
    ALTER TABLE [dbo].[Character]
    ADD [Ruud] [int] NOT NULL
    GO

  6. #291
    Account Upgraded | Title Enabled! flyba is offline
    MemberRank
    Apr 2006 Join Date
    PhilippinesLocation
    391Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    @GameMoiRa ty for the reply but sql wont allow NOT NULL
    Msg 4901, Level 16, State 1, Line 2
    ALTER TABLE only allows columns to be added that can contain nulls, or have a DEFAULT definition specified, or the column being added is an identity or timestamp column, or alternatively if none of the previous conditions are satisfied the table must be empty to allow addition of this column. Column 'Ruud' cannot be added to non-empty table 'Character' because it does not satisfy these conditions.

  7. #292
    Enthusiast GameMoiRa is offline
    MemberRank
    Dec 2019 Join Date
    VietnamLocation
    30Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Quote Originally Posted by flyba View Post
    @GameMoiRa ty for the reply but sql wont allow NOT NULL
    Msg 4901, Level 16, State 1, Line 2
    ALTER TABLE only allows columns to be added that can contain nulls, or have a DEFAULT definition specified, or the column being added is an identity or timestamp column, or alternatively if none of the previous conditions are satisfied the table must be empty to allow addition of this column. Column 'Ruud' cannot be added to non-empty table 'Character' because it does not satisfy these conditions.
    Change to this, Default = 0
    USE [MuOnline]
    GO

    ALTER TABLE [dbo].[Character]
    ADD [Ruud] [int] NOT NULL DEFAULT(0)

    GO

  8. #293
    Valued Member Exclikers is offline
    MemberRank
    Jan 2008 Join Date
    131Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    how was this server files so far?

  9. #294
    Apprentice whiner123 is offline
    MemberRank
    Jan 2020 Join Date
    15Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Hi,

    does anyone have Mu Maker? The latest one which works for IGCN Season 12? Unfortunately, I really can't make Mu Editor work properly due to errors in odbc setup :( the server and client work fine though.

  10. #295
    Novice pachu11 is offline
    MemberRank
    Jan 2020 Join Date
    1Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Quote Originally Posted by GameMoiRa View Post
    1. Fix Elemental Monster Spawn randomly with Element=6
    2. Fix Shop Mithril and Mithril Fragment

    Files update:
    - gObjMonster.cpp
    - MonsterSetBase.cpp
    - PentagramSystem.cpp
    - PentagramSystem.h
    - Shop.cpp
    Copy to your GameServer source code then rebuild.

    Example Monster spawn config:
    <Spawn Index="670" Distance="5" StartX="194" StartY="26" EndX="198" EndY="26" Dir="-1" Count="5" Element="6" />

    Example Shop config:
    <!-- Mithril Fragment -->
    <Item Cat="12" Index="144" Level="0" Durability="0" Skill="0" Luck="0" Option="0" Exc="-1" SetItem="0" SocketCount="0" Elemental="1" Serial="0" />
    <Item Cat="12" Index="144" Level="0" Durability="0" Skill="0" Luck="0" Option="0" Exc="-1" SetItem="0" SocketCount="0" Elemental="2" Serial="0" />
    <Item Cat="12" Index="144" Level="0" Durability="0" Skill="0" Luck="0" Option="0" Exc="-1" SetItem="0" SocketCount="0" Elemental="3" Serial="0" />
    <Item Cat="12" Index="144" Level="0" Durability="0" Skill="0" Luck="0" Option="0" Exc="-1" SetItem="0" SocketCount="0" Elemental="4" Serial="0" />
    <Item Cat="12" Index="144" Level="0" Durability="0" Skill="0" Luck="0" Option="0" Exc="-1" SetItem="0" SocketCount="0" Elemental="5" Serial="0" />
    <!-- Mithril -->
    <Item Cat="12" Index="145" Level="0" Durability="0" Skill="0" Luck="0" Option="0" Exc="-1" SetItem="0" SocketCount="0" Elemental="1" Serial="0" />
    <Item Cat="12" Index="145" Level="0" Durability="0" Skill="0" Luck="0" Option="0" Exc="-1" SetItem="0" SocketCount="0" Elemental="2" Serial="0" />
    <Item Cat="12" Index="145" Level="0" Durability="0" Skill="0" Luck="0" Option="0" Exc="-1" SetItem="0" SocketCount="0" Elemental="3" Serial="0" />
    <Item Cat="12" Index="145" Level="0" Durability="0" Skill="0" Luck="0" Option="0" Exc="-1" SetItem="0" SocketCount="0" Elemental="4" Serial="0" />
    <Item Cat="12" Index="145" Level="0" Durability="0" Skill="0" Luck="0" Option="0" Exc="-1" SetItem="0" SocketCount="0" Elemental="5" Serial="0" />



    You could fix the creation of errtel?

  11. #296
    Apprentice vipfarm is offline
    MemberRank
    Jan 2020 Join Date
    18Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Cannot show effect bar


  12. #297
    Member ispyder is offline
    MemberRank
    Aug 2015 Join Date
    76Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Quote Originally Posted by vipfarm View Post
    Cannot show effect bar


    Does this help?
    http://forum.ragezone.com/f197/relea...eason-1170612/

  13. #298
    Apprentice whiner123 is offline
    MemberRank
    Jan 2020 Join Date
    15Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Hello, I posted in Mu Help but still no luck so Ill try here.

    How do you add sockets and pink option to any items for this server? I tried what I did for season 6-3 zteam files but it does not work here..

  14. #299
    Account Upgraded | Title Enabled! dezner is offline
    MemberRank
    Aug 2006 Join Date
    BrasilLocation
    241Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    has anyone experienced this problem?
    [18:05:31] [NOTICE]: IOCP Thread Handles get 32
    [18:05:31] [NOTICE]: IOCP Thread Handles set to 16
      with that I can't access another server or another room on the server

    function
    Code:
    GetSystemInfo(&SystemInfo);
    
    	g_dwThreadCount = SystemInfo.dwNumberOfProcessors * 2;
    	g_Log.AddC(TColor::Orange, "[NOTICE]: IOCP Thread Handles get %d", g_dwThreadCount);
    	if ( g_dwThreadCount >= MAX_IO_THREAD_HANDLES )
    	{
    		g_dwThreadCount = MAX_IO_THREAD_HANDLES;
    		g_Log.AddC(TColor::Orange, "[NOTICE]: IOCP Thread Handles set to 16");
    	}

  15. #300
    Apprentice mrmadmadman is offline
    MemberRank
    Sep 2019 Join Date
    11Posts

    Re: [Release] IGCN - MuEmu Server Season 12 ep 2 + Sources

    Can someone collect all the fixes done so far and upload the update so we can all continue fixing the server files from the same starting point?

    This community has potential to help each other out. The problem is everyone is too busy fixing their own server instead of sharing their progress. We can benefit from each other but we need team work.

    All seasons of MU, we have the same problems. Many bugs and disperse fixes across different threads but never an unified/collective update with all the fixes made over time for each of the seasons...



Advertisement