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?
/item StarTower Super 12 7 255 13 13
It will be...Quote:
Ok, you know when your making a item, example:
What is the code for Glory Gem and Thunder Gem instead of 13 13?Code:/item StarTower Super 12 7 255 13 13
/item StarTower Super 12 7 255 103 103 /item HeavenFan Super 12 7 255 123 123
Funny you allways ask for help toQuote:
#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.
#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