[simple] Helpdesk Npc 5375

07/04/2011 20:59 S/W#1
Here My Helpdesk Npc for 5375

Quote:
#region Helpdesk
case 10065:
{
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("Welcome to the Helpdesk NPC, I am here to help you manage your account and help you connect to our customer service");
dialog.Option("Register", 1);
dialog.Option("ChangePassword", 2);
dialog.Option("Vote", 3);
dialog.Option("ChatBox", 4);
dialog.Option("Download", 5);
dialog.Option("Nah am good, Thanks", 255);
dialog.Avatar(95);
dialog.Send();
break;
}
case 1:
{

client.Send(new Message("Register link", System.Drawing.Color.Red, Message.Website));
break;
}
case 2:
{

client.Send(new Message("ChangePassword Link", System.Drawing.Color.Red, Message.Website));
break;
}
case 3:
{
client.Send(new Message("Vote Link", System.Drawing.Color.Red, Message.Website));

break;
}
case 4:
{
client.Send(new Message("ChatBox Link", System.Drawing.Color.Red, Message.Website));
break;
}
case 5:
{
client.Send(new Message("Download Link", System.Drawing.Color.Red, Message.Website));
break;
}
}
break;
}
#endregion
P.S If Its no needed mods plyz delete topic ty :)
07/05/2011 07:12 rockymiperro#2
mmmm dont work the vote link why? said this [Only registered and activated users can see links. Click Here To Register...]
07/05/2011 17:44 F i n c h i#3
Quote:
Originally Posted by rockymiperro View Post
mmmm dont work the vote link why? said this [Only registered and activated users can see links. Click Here To Register...]
Did you wrote your vote link between quote?
12/04/2011 21:42 mojonblanco#4
dont work whit me...
12/13/2011 15:59 Frankos#5
It works perfectly.

Do it like there:

Quote:
#region Helpdesk
case 10065:
{
switch (npcRequest.OptionID)
{
case 0:
{
dialog.Text("Welcome to the Helpdesk NPC, I am here to help you manage your account and help you connect to our customer service");
dialog.Option("Register", 1);
dialog.Option("ChangePassword", 2);
dialog.Option("Vote", 3);
dialog.Option("ChatBox", 4);
dialog.Option("Download", 5);
dialog.Option("Nah am good, Thanks", 255);
dialog.Avatar(95);
dialog.Send();
break;
}
case 1:
{

client.Send(new Message("http://yourlink/register.php", System.Drawing.Color.Red, Message.Website));
break;
}
case 2:
{

client.Send(new Message("http://yourlink/change-password.php", System.Drawing.Color.Red, Message.Website));
break;
}
case 3:
{
client.Send(new Message("http://xtremetop100[dot]com/......", System.Drawing.Color.Red, Message.Website));

break;
}
case 4:
{
client.Send(new Message("http://yourlink/chatbox.php", System.Drawing.Color.Red, Message.Website));
break;
}
case 5:
{
client.Send(new Message("http://yourlink/download.php", System.Drawing.Color.Red, Message.Website));
break;
}
}
break;
}
#endregion

Good job S/W.
12/13/2011 16:51 pro4never#6
I don't know why it bugs me but I am still shocked no one has done a REAL helpdesk npc... IE: lets you enter text and then pulls topics from a database for you to read.

It would be useless but the thought entertains me xD

Nice work.
02/12/2012 16:38 ford2000#7
tyyyyyyyyy
02/15/2012 12:19 I don't have a username#8
Quote:
Originally Posted by pro4never View Post
I don't know why it bugs me but I am still shocked no one has done a REAL helpdesk npc... IE: lets you enter text and then pulls topics from a database for you to read.

It would be useless but the thought entertains me xD

Nice work.
I shall do that for the lawls.
03/08/2012 19:53 [I]Inquisitor#9
The Vote option would be better if you get cps, this is nothing. Only opening websites
03/08/2012 20:54 ×Holo#10
For god's sake, stop reviving old posts. >_<
03/09/2012 06:15 S/W#11
#request close
04/15/2012 09:19 Angellinho#12
Code:
case 1:
                                {
                                    client.Send(new Network.GamePackets.Message("http://www.yourlinkhere.com", System.Drawing.Color.White, 2105));
                                    break;
                                }