sahisahi
Member
Hello icant figure this out so i ask for help
how can i call that gump? im getting errors, this is what im trying
CS1502: Line 72: The best overloaded method match for 'Server.Gumps.ChatGump
a.ChatGumpa(Server.Mobile, Server.Gumps.ChatSystem)' has some invalid arguments
CS1503: Line 72: Argument '2': cannot convert from 'Server.Gumps.chatgumpz'
to 'Server.Gumps.ChatSystem'
Also tried
CS1729: Line 72: 'Server.Gumps.ChatGumpa' does not contain a constructor tha
t takes '1' arguments
Code:
public ChatGumpa(Mobile from, ChatSystem system) : base(50, 100)
{
m_Caller = from;
m_System = system;
this.Closable=true;
this.Disposable=true;
this.Dragable=true;
this.Resizable=false;
how can i call that gump? im getting errors, this is what im trying
Code:
from.SendGump(new ChatGumpa(from,this));
CS1502: Line 72: The best overloaded method match for 'Server.Gumps.ChatGump
a.ChatGumpa(Server.Mobile, Server.Gumps.ChatSystem)' has some invalid arguments
CS1503: Line 72: Argument '2': cannot convert from 'Server.Gumps.chatgumpz'
to 'Server.Gumps.ChatSystem'
Also tried
Code:
from.SendGump(new ChatGumpa(from));
CS1729: Line 72: 'Server.Gumps.ChatGumpa' does not contain a constructor tha
t takes '1' arguments