![]() |
2 Quick Nub Questions - Printable Version +- Mirage Source (https://mirage-engine.uk/forums) +-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61) +--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18) +---- Forum: General (https://mirage-engine.uk/forums/forumdisplay.php?fid=17) +---- Thread: 2 Quick Nub Questions (/showthread.php?tid=1560) |
2 Quick Nub Questions - Ramsey - 14-02-2008 When I hit enter on the chat bar, it goes *Ding!* how do I stop this? How do I make my game appear on the task bar and as just 1 bar? Re: 2 Quick Nub Questions - Ramsey - 14-02-2008 Cool, it works, thanks. Does anyone know the answer to the second question? Quote:How do I make my game appear on the task bar and as just 1 bar? Re: 2 Quick Nub Questions - Zalos - 14-02-2008 Screenshot of what you mean please? because As Far As I know it should only be 1 bar Re: 2 Quick Nub Questions - Stomach Pulser - 14-02-2008 It appears as more than one? Re: 2 Quick Nub Questions - Dr. Spoon - 14-02-2008 I think he means the separate windows that pop-up things like: trade window train window ect.. the only way to make them all appear in one task bar button would be to combine them all into the main client window as far as i know unless you move everything over to an MDI form (could work for your) Re: 2 Quick Nub Questions - Robin - 14-02-2008 Or just only have the main window have ShowInTaskBar as true. Re: 2 Quick Nub Questions - Ramsey - 18-02-2008 (server side)I made my game 16x16 now and my server gets an error while compiling, but my client is compiling perfectly and when I run the server through VB6 there are no errors. No errors saving the map too. I changed this: Code: Public Const MAX_MAPX = 49 There's and error here and I did not even touch it: Code: Sub ConvertOldMapsToNew() It highlights this(I did not mess with any of these either): Code: Dim NewMap As MapRec And says: Quote:Too many local, nonstatic variables Anyone have the fix or have a suggestion? Re: 2 Quick Nub Questions - Stomach Pulser - 18-02-2008 DiD you delete all your maps after you switched the tile constants? Re: 2 Quick Nub Questions - Ramsey - 18-02-2008 It's a compile error, and yes. Re: 2 Quick Nub Questions - Ramsey - 18-02-2008 lol Possibly... So do you know how to fix it? Re: 2 Quick Nub Questions - Ramsey - 18-02-2008 Dave Wrote:get rid of some local non-static variables?edit*How do I turn one into a static variable? Re: 2 Quick Nub Questions - Dr. Spoon - 18-02-2008 like this when you dim your maps just use public Map() as maprec then later on use redim Map(1 to MAX_MAPS) as maprec the simple act of redim-ing it seems to resolve this problem Re: 2 Quick Nub Questions - Ramsey - 18-02-2008 Thanks for replying to my message Spoon, I just deleted the sub. lol |