i dont know if someone release like this, vote for the server, but i saw some server have this NPC too.
here we go first open character.cs and look for
put under
now to the NPCDialog.cs add this
and replace the NO. to your site Number, 1132296413 <----- Replace this. im sure you like this release its me yhudong
well i edit a little for the reason all have internet explorer
here we go first open character.cs and look for
Code:
public byte LotteryUsed = 0;
Code:
public byte VoteUsed = 0;
Code:
#region Vote server
case 30165:
{
if (Control == 0)
{
GC.AddSend(Packets.NPCSay("You want to vote the server?"));
GC.AddSend(Packets.NPCLink("yes", 1));
GC.AddSend(Packets.NPCLink("no", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
if (Control == 1)
{
if (GC.MyChar.VoteUsed == 0)
{
GC.MyChar.VoteUsed++;
GC.MyChar.CPs += 5000;
Game.World.SendMsgToAll("SYSTEM", "http://www.xtremetop100.com/in.php?site=1132296413", 2105, 0);
Game.World.SendMsgToAll("SYSTEM"," Congratulation " + GC.MyChar.Name + " recieve 5000 cps upon voting the server ", 2011, 0);
}
else
{
GC.AddSend(Packets.NPCSay("you can vote only once a day"));
GC.AddSend(Packets.NPCLink("I see", 255));
GC.AddSend(Packets.NPCSetFace(N.Avatar));
GC.AddSend(Packets.NPCFinish());
}
}
break;
}
#endregion
well i edit a little for the reason all have internet explorer