[IGCN] Files Season 9++

Results 1 to 2 of 2
  1. #1
    Apprentice ProyectoMU is offline
    MemberRank
    Dec 2020 Join Date
    9Posts

    [IGCN] Files Season 9++

    I have some general questions for people who know about these files.


    1- How to make a BOX instead of throwing the item, put the item in your inventory? (like BC Mastery Box) But this can be done in general, for medals or any other.

    2- How to create a Script for a BOX that is not registered in the files?

    Example:
    Item_(14,52,0)_GM_Gift_Box
    Code:
    <ItemBag>    <BagConfig Name="Item_GM_Gift_Box" ItemRate="10000" SetItemRate="0" SetItemCount="1" MoneyDrop="5000000" BagUseRate="10000" BagUseEffect="-1" IsPentagramForBeginnersDrop="0" MasterySetItemInclude="0" PartyDropRate="0" PartyShareType="0" PartyOneDropOnly="0" />
        <AddCoin Enable="0" CoinType="0" CoinValue="0" PlayerMinLevel="1" PlayerMaxLevel="MAX" PlayerMinReset="0" PlayerMaxReset="MAX" />    
    <Ruud GainRate="0" MinValue="1" MaxValue="10" PlayerMinLevel="1" PlayerMaxLevel="MAX" PlayerMinReset="0" PlayerMaxReset="MAX" />   
     <SummonBook Enable="0" DropRate="0" ItemCat="14" ItemIndex="217" />  
      <DropSection DisplayName="Section 1" UseMode="-1">        
    <DropAllow DW="1" DK="1" ELF="1" MG="1" DL="1" SU="1" RF="1" GL="1" RW="1" SLA="1" GC="1" LW="1" LM="1" IK="1" PlayerMinLevel="1" PlayerMaxLevel="MAX" PlayerMinReset="0" PlayerMaxReset="MAX" MapNumber="-1" DisplayName="DropAllow">           
     <Drop Rate="10000" Count="1" Type="0">                <!--Panda Ring-->                <Item Cat="13" Index="76" ItemMinLevel="0" ItemMaxLevel="0" Duration="259200" Skill="0" Luck="1" Option="1" Exc="-2" SetItem="0" SocketCount="0" ElementalItem="0" />            </Drop>        </DropAllow>    </DropSection></ItemBag>

    But make this script for "Premium Box"
    i know the premium box code is.

    Item_(19,3,0)_Premium_Box (i think so, because i checked in IGCToolKit

    But how to make a script for this itembag? i try this:

    Code:
    <ItemBag> <ItemBag> <BagConfig Name="Item_Premium_Box" ItemRate="10000" SetItemRate="0" SetItemCount="1" MoneyDrop="5000000" BagUseRate="10000" BagUseEffect="-1" IsPentagramForBeginnersDrop="0" MasterySetItemInclude="0" PartyDropRate="0" PartyShareType="0" PartyOneDropOnly="0" /> <AddCoin Enable="0" CoinType="0" CoinValue="0" PlayerMinLevel="1" PlayerMaxLevel="MAX" PlayerMinReset="0" PlayerMaxReset="MAX" /> <Ruud GainRate="0" MinValue="1" MaxValue="10" PlayerMinLevel="1" PlayerMaxLevel="MAX" PlayerMinReset="0" PlayerMaxReset="MAX" /> <SummonBook Enable="0" DropRate="0" ItemCat="14" ItemIndex="217" /> <DropSection DisplayName="Section 1" UseMode="-1"> <DropAllow DW="1" DK="1" ELF="1" MG="1" DL="1" SU="1" RF="1" GL="1" RW="1" SLA="1" GC="1" LW="1" LM="1" IK="1" PlayerMinLevel="1" PlayerMaxLevel="MAX" PlayerMinReset="0" PlayerMaxReset="MAX" MapNumber="-1" DisplayName="DropAllow"> <Drop Rate="10000" Count="1" Type="0"> <!--Panda Ring--> <Item Cat="13" Index="76" ItemMinLevel="0" ItemMaxLevel="0" Duration="259200" Skill="0" Luck="1" Option="1" Exc="-2" SetItem="0" SocketCount="0" ElementalItem="0" /> </Drop> </DropAllow> </DropSection> </ItemBag>


    but didnt work.


    3- its possible to make a customs boxes in this files? like (GM Gift Box) but 3 of this, like GM GIFT 1, GM GIFT 2, GM GIFT 3


  2. #2
    C++ Developer zipper20032 is offline
    MemberRank
    Oct 2006 Join Date
    0x198837ADLocation
    663Posts
    To answer your questions at the best of my knowledge regarding server files:

    1) I'm pretty sure that needs to be coded into your game server source code and in your client source code because it's a custom thing

    2) If your server files can read for what box item ID is loaded, yes, you can create things with specific drop item list, otherwise it's a big no, as your server don't know what to read for a specific box. Maybe there are other ways around. You should check each config file how it's structured and what can read or not.

    If your bag name is literally only checking it by name, you can add these easily. You have to check that.

    3) Same answer as for number 2.

    Suggestion: Check very closely your server config files and see what can you do with them, what config files can do, what values they can read from them.



Advertisement