Decker Needs Help Official Thread

03/02/2010 00:07 Decker_#46
How can I make for team deathmatch when they sign up, the team the get on, they get that color garment put on them automatically?
03/02/2010 01:22 Decker_#47
CAn someone explain this better than what he did?
03/02/2010 02:06 Arcо#48
He explained perfectly.
03/02/2010 02:10 Arcо#49
Quote:
Originally Posted by Decker_ View Post
How can I make for team deathmatch when they sign up, the team the get on, they get that color garment put on them automatically?
if (gc.mychar.equip.garment.id != 0)
{
unequip code
equip code
}
else
{
equip code
}
03/02/2010 02:18 Decker_#50
No he didn't.
03/02/2010 09:12 -NewDawn-#51
#request sticky thread
(I have no idea of that's how you do it)

and jk. I would make a thread like this too BUT, this makes it unsearchable so people can't really find the answers to their questions...

and no offense Decker but figure it out for yourself like the rest of us. I'm only a noob coder and i'm helping you? That's just weird.
03/02/2010 09:57 LegalConquer#52
the only thing i missed was the ini file in ur conquer / ini folder but common sense tells u where that is.

ide like to know how to change the stupid green colour above the names tho i liked the old white ones XD
03/02/2010 10:37 Korvacs#53
Quote:
Originally Posted by Decker_ View Post
No he didn't.
He did, you replace all instances of the old font name (which you want to change) with the new font name, in StrRes.ini. It cant be put any simpler than that.
03/02/2010 11:03 LegalConquer#54
there you go i made it super simple...
03/02/2010 17:04 Decker_#55
Hi.
My xp skills ain't working.
The only ones that work is Transformations.
Can you help me fix?
03/02/2010 18:29 Decker_#56
Ok, you know when your making a item, example:
Code:
/item StarTower Super 12 7 255 13 13
What is the code for Glory Gem and Thunder Gem instead of 13 13?
03/02/2010 18:59 Øblivion#57
Quote:
Originally Posted by Decker_ View Post
Ok, you know when your making a item, example:
Code:
/item StarTower Super 12 7 255 13 13
What is the code for Glory Gem and Thunder Gem instead of 13 13?
It will be...

Code:
/item StarTower Super 12 7 255 103 103
/item HeavenFan Super 12 7 255 123 123
Have fun...
03/02/2010 19:05 Øblivion#58
Quote:
Originally Posted by -NewDawn- View Post
#request sticky thread
(I have no idea of that's how you do it)

and jk. I would make a thread like this too BUT, this makes it unsearchable so people can't really find the answers to their questions...

and no offense Decker but figure it out for yourself like the rest of us. I'm only a noob coder and i'm helping you? That's just weird.
Funny you allways ask for help to
03/02/2010 19:18 Decker_#59
How can I fix the bug where my max hp says something like 9k but I actually have li ke 15k?
03/02/2010 20:17 Decker_#60
How can I make this code so that only the guild leader that won the guild leader can claim this prize?
Code:
#region GuildWarWinner
                            case 227789:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Hello.  Did you win the guild war and you wanna claim your prize?"));
                                        GC.AddSend(Packets.NPCLink("Yes", 1));
                                        GC.AddSend(Packets.NPCLink("No", 255));
                                        GC.AddSend(Packets.NPCSetFace(30));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    else if (Control == 1)
                                    {
                                        {
                                            GC.MyChar.CPs += 20000;
                                            GC.MyChar.StatEff.Add(StatusEffectEn.TopGuildLeader);
                                        }
                                        GC.AddSend(Packets.NPCSay("Here you go"));
                                    }
                                    break;
                                }
                            #endregion