How to do this?

06/09/2009 16:05 painkiller199202#1
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.

[Only registered and activated users can see links. Click Here To Register...]
06/09/2009 16:25 _Emme_#2
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 painkiller199202#3
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 Andrew.A#4
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;
                    }