|
You last visited: Today at 08:48
Advertisement
How to do this?
Discussion on How to do this? within the CO2 Private Server forum part of the Conquer Online 2 category.
06/09/2009, 16:05
|
#1
|
elite*gold: 0
Join Date: May 2008
Posts: 65
Received Thanks: 5
|
How to do this?
Hi its me again needing a help for CoEmu v2 source hehe.
Anyone can help me only with the id (or something like that) for create this box?
PS: I dont wanna the code or whatever im doing it by myself i just wanna some hint for the id because i´ve tried some ids and appear Warehouse, craft and composition.
|
|
|
06/09/2009, 16:25
|
#2
|
elite*gold: 1142
Join Date: Aug 2006
Posts: 2,464
Received Thanks: 1,162
|
I don't get it, what box? The NPC chat, or the box you type your WH password in?
Edit:
Just did a quick look into the Handler class, saw a method called Input, try that one.
Example in NpcTalk.cs
Text("Please type in your warehouse password",CSocket);
Input("Password:",CSocket);
Link("Just passing by..",255,CSocket);
Goodluck
|
|
|
06/09/2009, 16:53
|
#3
|
elite*gold: 0
Join Date: May 2008
Posts: 65
Received Thanks: 5
|
Yeah that box to set a password or create a guild. I was trying yesterday but didnt found that.
Im Still trying here to make it work hehe. Thanks
|
|
|
06/09/2009, 18:30
|
#4
|
elite*gold: 0
Join Date: Aug 2007
Posts: 187
Received Thanks: 45
|
Any luck on guilds yet? I dont even know where to start but so far all I have is the Front Page Dialog and im stuck there lol.
Code:
case 10003://Guild dude
{
if (LinkBack == 0)
{
Text("Greetings! I am the guild director, in charge of administrating and managing guilds. What business do you have with me?", CSocket);
Link("Create a guild", 255, CSocket);
Link("Disband my guild", 255, CSocket);
Link("Donate money", 255, CSocket);
Link("Pass my leadership", 255, CSocket);
Link("Assign Deputy Guild Leader", 255, CSocket);
Link("Remove sb. from office", 255, CSocket);
Link("Inquire about guild", 255, CSocket);
Link("Others", 1, CSocket);
Face(30, CSocket);End(CSocket);
}
else if (LinkBack == 1)
{
{
Text("I am in charge of all guilds in Twim City. You may consult me for anything related to the guilds.", CSocket);
Link("Create Branch", 255, CSocket);
Link("Assign Branch Manager", 255, CSocket);
Link("Transfer fund.", 255, CSocket);
Link("Others", 0, CSocket);
Face(30, CSocket);End(CSocket);
}
}
break;
}
|
|
|
All times are GMT +2. The time now is 08:49.
|
|