Questions about Effects

02/25/2011 19:36 Galactic#1
Hello guys,

Just a simple Question:
Could someone tell me the EffectName of the -dmg Buddah?
Could someone tell me all effects. Like in a .txt?
And I cannot find the .dat to txt converter(I used the search). Can anyone that knows where to download give me the link?


Thanks.
02/25/2011 21:18 Spirited42#2
=| Hm... I need to research that still.
You could do it the hard way... test each effect name.
Or if you know the texture, you can back trace it... =\

Here's a decryptor that I didn't make: [Only registered and activated users can see links. Click Here To Register...]

As far as making a text file... I could do that for u I guess.
02/26/2011 00:11 CptSky#3
aegis1, aegis2... or something like this.
02/26/2011 00:15 12tails#4
Code:
            #region Check for bless 7
            if (bless7 > bless5 && bless7 > bless3 && bless7 > bless1)
            {
                if (Calculate.ChanceSuccess(3))
                { Actions.Action(GC.Char, ConquerPacket.String(GC.Char.EntityID, 10, "Aegis4").Get); }
            }
            #endregion
            #region Check for bless 5
            else if (bless5 > bless7 && bless5 > bless3 && bless5 > bless1)
            {
                if (Calculate.ChanceSuccess(3)) 
                { Actions.Action(GC.Char, ConquerPacket.String(GC.Char.EntityID, 10, "Aegis3").Get); }
                goto end;
            }
            #endregion
            #region Check for bless 3
            else if (bless3 > bless7 && bless3 > bless5 && bless3 > bless1)
            {
                if (Calculate.ChanceSuccess(3)) 
                { Actions.Action(GC.Char, ConquerPacket.String(GC.Char.EntityID, 10, "Aegis2").Get); }
                goto end;
            }
            #endregion
            #region Check for bless 1
            else if (bless1 > bless7 && bless1 > bless5 && bless1 > bless3)
            {
                if (Calculate.ChanceSuccess(3)) 
                { Actions.Action(GC.Char, ConquerPacket.String(GC.Char.EntityID, 10, "Aegis1").Get); }
                goto end;
            }
            #endregion
hope that helps ^^