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!

[Release] IGCN Season 9.5 (src-x9.5 9.5.1.15) SRC (April/2016)

Custom Title Activated
Member
Joined
Aug 30, 2011
Messages
2,969
Reaction score
1,002
Thank you guys ! Anyone have tutorial how to add custom intems into this files?

Since these guys use IGCN files you could follow this tutorial very similar steps:



DragonSeth Can you please do this for community? :D


solarismu Maybe its possible to put customitemglow from http://forum.ragezone.com/f197/igcn-season-9-repack-custom-1142304/ ? But I dont have latest patch source IGCN.dll




if I'm not mistaken you should configure this in IGC_PlayerKillSystem


Enviado do meu iPhone usando Tapatalk

You're Correct :)



Yes, you can add it just simple as other custom items. But will have many to fix after that.
Such as:
Server: need script.
Client: need to fix item label color in item info and when it drops on map. Need to add drop sound. Need to make jewel glow (regular items +0 don't have glow color). Maybe more, but I just remember these steps...

-Updated-
like this
uPBIXN - [Release] IGCN Season 9.5  (src-x9.5 9.5.1.15) SRC (April/2016) - RaGEZONE Forums


Ps: I only help you know how to do it... not help you do everything.

Keep up the good work!!!
 

Attachments

You must be registered for see attachments list
Last edited:
Junior Spellweaver
Joined
Aug 27, 2008
Messages
183
Reaction score
133
Inv Expansion to 4 ^^


Need's some research for gui offsets...
 
Last edited:
Junior Spellweaver
Joined
Feb 10, 2014
Messages
107
Reaction score
9
Thanks i finally added one jewel but cant use it to any item so sad dont know what i can do to make it work
So when i put in to depo gs said warehouse item not found
 
Junior Spellweaver
Joined
Aug 27, 2008
Messages
183
Reaction score
133
Thanks i finally added one jewel but cant use it to any item so sad dont know what i can do to make it work
Need to code on gs side in the useitem function in protocol.cpp to work :)
Like this:
Code:
if(item == ItemID,ItemIndex) //your custom jewel itemcode
{
// item options to add if you use on item
}

Tapatalkkal küldve az én Redmi 4X eszközömről
 
Experienced Elementalist
Joined
May 4, 2017
Messages
219
Reaction score
314
@KarLi @DragonSeth dont need anymore. Thanks
^.^ poor guy :p If you still need a glow bmd converter. I'll make one for you when I get home tonight. It's just few lines of codes :)

-Updated-
@Forces
Here you go, quick glow.bmd converter. bmd<->txt
Should work ok, didn't test in game^.^


virustotal:
 
Last edited:
Initiate Mage
Joined
Jan 11, 2013
Messages
57
Reaction score
12
I'm trying the same thing. If i find anything i let you know.

great my friend! The display problem lies in the client and we need to find the offset on main.exe
But i do not know anything about C ++ lol
 
Last edited:
Joined
Jun 12, 2005
Messages
744
Reaction score
69
Bug: After collecting 5 symbol of kundun and create lost map, one symbol of kundun 0/5 keeps one box and cant move and cant sell!
Here the GS error:

If i put on other one some time it stares off but some time no.
 
Last edited:
Experienced Elementalist
Joined
May 4, 2017
Messages
219
Reaction score
314
Bug: After collecting 5 symbol of kundun and create lost map, one symbol of kundun 0/5 keeps one box and cant move and cant sell!
Here the GS error:

If i put on other one some time it stares off but some time no.

Regular server sources don't have that bug.
You must ask who make the files to fix it.
 
Last edited:
Initiate Mage
Joined
Feb 7, 2018
Messages
45
Reaction score
0
Hi bros,

I want to change the name of skills. How can I do

I try to edit the skill.bmd in client/data/local

but it's unsuccessful :((



can you help me

Thanks,
--Taly
 
Junior Spellweaver
Joined
Oct 8, 2014
Messages
126
Reaction score
6
Code:
void Camera::Position()
{
    if (!this->IsActive)
    {
        return;
    }
    // ----
    if (this->InMove)
    {
        if (this->TempCursorY < pCursorY)
        {
            if (*(float*)oCam_RotY < -45)
            {
                SetDouble((LPVOID)oCam_PosZ, *(double*)oCam_PosZ - 44);
                SetFloat((LPVOID)oCam_RotY, *(float*)oCam_RotY + (double)2.42);
            }
        }
        else if (this->TempCursorY > pCursorY)
        {
            if (*(float*)oCam_RotY > -90)
            {
                SetDouble((LPVOID)oCam_PosZ, *(double*)oCam_PosZ + 44);
                SetFloat((LPVOID)oCam_RotY, *(float*)oCam_RotY - (double)2.42);
            }
        }
        // ----
        this->TempCursorY = pCursorY;
    }
}


3DCameraThere is a problem with turning up and down. How to fix it?
 
Last edited by a moderator:
Back
Top