here the code :-
Quote:
case 380: //GuildController
{
if(LinkBack == 0)
{
Text("What can Item do for you?");
Link("Enter the guild area.", 1);
Link("Buy statue.", 2);
Link("Just passing by.", 255);
End(CSocket);
}
else if(LinkBack == 1) //Guild Area
{
Teleport(1002,350,340,0, CSocket);
}
else if (LinkBack == 2)
{
Text("A statue costs 50,000 silver. Are you sure that you want to");
Text("buy?");
Link("Yeah.", 3);
Link("No, thanks.", 255);
End(CSocket);
}
else if (LinkBack == 3)
{
Text("Guilds must still build be so statue can not.");
Link("OK.OK.OK.", 255,CSocket);
End(CSocket);
}
break;
}






