[HELP] Top Halos

02/07/2010 19:17 Metapod#1
Hello
I am having trouble
When I click the NPC's to get the top halos, I get them, then it says now I have them, but it don't show them.

Here is the "Top Trojan" code
Tell me what is wrong with it:
Code:
#region Top Ninja
                            case 2728:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Would you like the TopNinja Halo?"));
                                        GC.AddSend(Packets.NPCLink("Yeh, Meng", 1));
                                        GC.AddSend(Packets.NPCLink("Nah.", 255));
                                        GC.AddSend(Packets.NPCSetFace(30));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    else if (Control == 1)
                                    {
                                        GC.MyChar.StatEff.Add(StatusEffectEn.TopNinja);
                                        GC.Message(2005, GC.MyChar.Name + "Has won the Top Trojan Halo");
                                    }
                                    break;
                                }
                            #endregion
Help please!
02/07/2010 21:22 coreymills#2
thats the TopNinja code all u did was edit Has won the Top Trojan Halo so that it says u got the toptrojan
edit
Code:
GC.MyChar.StatEff.Add(StatusEffectEn.TopNinja);
so it says
Code:
GC.MyChar.StatEff.Add(StatusEffectEn.TopTrojan);
02/07/2010 21:45 -Shunsui-#3
@ Corey i don't think thats what he means, easy to point out i think hes saying, that hes halo does not show around hes characters body,

@ Metapod, i don't see anything wrong with your code, I don't know what the problem can be,
02/07/2010 23:03 Metapod#4
Well does anyone know why the halo doesn't show around the characters body?
02/08/2010 01:06 Arcо#5
Quote:
Originally Posted by Metapod View Post
Well does anyone know why the halo doesn't show around the characters body?
I told you to debug and see what errors you get.
Cause currently you are using the exe in the release folder when you need to be using the one in the debug folder.