[Help] 5165 Halos

02/15/2010 05:26 Hanibal#1
For some bloody reason the damn things won't show, I've tried using commands and a npc and they still won't appear.

I checked my source and this is how it looks in Character.cs

Code:
TopGuildLeader = 17179869184,
        TopDeputyLeader = 34359738368,
        MonthlyPKChampion = 68719476736,
        WeeklyPKChampion = 137438953472,
        TopWarrior = 274877906944,
        TopTrojan = 549755813888,
        TopArcher = 1099511627776,
        TopWaterTaoist = 2199023255552,
        TopFireTaoist = 4398046511104,
        TopNinja = 8796093022208,
I'm assuming that's right, also checked my client and all the effects are there for them anybody else having this issue or know how to fix it?
02/15/2010 06:16 hunterman01#2
Try this its top Warrior

Code:
Top Warrior 0x20000000000
02/15/2010 06:55 Arcо#3
Quote:
Originally Posted by Hanibal View Post
For some bloody reason the damn things won't show, I've tried using commands and a npc and they still won't appear.

I checked my source and this is how it looks in Character.cs

Code:
TopGuildLeader = 17179869184,
        TopDeputyLeader = 34359738368,
        MonthlyPKChampion = 68719476736,
        WeeklyPKChampion = 137438953472,
        TopWarrior = 274877906944,
        TopTrojan = 549755813888,
        TopArcher = 1099511627776,
        TopWaterTaoist = 2199023255552,
        TopFireTaoist = 4398046511104,
        TopNinja = 8796093022208,
I'm assuming that's right, also checked my client and all the effects are there for them anybody else having this issue or know how to fix it?
Post the npc here, or the command, whichever.
02/15/2010 14:27 Hanibal#4
Quote:
Originally Posted by .Arco View Post
Post the npc here, or the command, whichever.
This is the command I was using

Code:
if (Cmd[0] == "/awardtoptrojan")
                                    {
                                        Game.Character C = Game.World.CharacterFromName(Cmd[1]);
                                        if (C != null)
                                        C.StatEff.Add(NewestCOServer.Game.StatusEffectEn.TopTrojan);
                                    }
tried it on a PM and GM account so I made a npc to give halos and this is part of the line for that

Code:
if (Control == 4)
                                    {

                                        if (GC.MyChar.Job >= 10 && GC.MyChar.Job <= 15)
                                            if (GC.MyChar.CPs >= 10000)
                                            {
                                                GC.MyChar.CPs -= 10000;
                                                GC.MyChar.StatEff.Add(StatusEffectEn.TopTrojan);
                                                GC.Message(2005, GC.MyChar.Name + " Has won the Top Trojan Halo");
Both ways won't show the Halo's, I'm thinking it's missing somewhere in my client because I have made a lot of edits to it, I just need to figure out which one of those ini files the effect is in and what it looks like I guess.

@hunter Didn't work =/

Edit: Alright so some of the halos work and some don't, the ones that are working are Top Guild and Top Deputy, this is messed lol.

Edit #2: So I narrowed it down to the issue being client side, I made some massive edits and somewhere in there the effects are missing so now I just need to figure out which file is missing in the client so I can add it to mine. =/ blah