Wagic Editing Tool

All add-on programm and tools for wagic
Locked
nicolapcweek94
Posts: 1
Joined: Tue Mar 06, 2012 9:29 pm

Wagic Editing Tool

Post by nicolapcweek94 »

ok, i just realized i've been taking from the community for a long time, but i have given nothing... so, i created this tool - very simple at the moment, but i plan to add more features - that lets you unlock sets and/or change the amount of credits you have... all from a nice interface. i plan to add a deck editor, a collection manager and a game mode unlocker. this is still in beta testing phase, so if you find bugs or problems please tell me and i'll be happy to solve them, if i can. the source code is also available, everyting in the git repo where you find also installation instructions. enjoy :D

http://github.com/nicolapcweek94/Wagic-Editing-Tool

(sorry about my english, i'm italian...)
EDIT: forgot an important part: you have to unzip the core_whatever.zip for this to work... still looking for a way to do that without unzipping.
Nigol
Posts: 22
Joined: Sun Mar 14, 2010 9:19 pm

Re: Wagic Editing Tool

Post by Nigol »

Haven't tried it, but to access your Zip files directly, use the DotNetZip Library http://dotnetzip.codeplex.com/.

Here is how I have done it, to extract the file into memory

Code: Select all

        protected Stream OpenZip(Predicate<ZipEntry> NameCheck)
        {
            try
            {
                MemoryStream s = new MemoryStream();
                using (ZipFile zip = ZipFile.Read(ZipPath))
                {
                    foreach (ZipEntry e in zip)
                    {
                        if (NameCheck.Invoke(e))
                        {
                            //Extract the Css file to a stream

                            e.Extract(s);
                            s.Seek(0, SeekOrigin.Begin);
                            return s;
                        }
                    }
                }

                return null;
            }
            catch (Exception)
            {
                return null;
            }
        }
then use it like this, putting whatever you want as a condition by using lambda expression or a delegate.

Code: Select all

        public virtual Stream GetStream(string filename)
        {
            Stream s = this.OpenZip(e => e.FileName.EndsWith(filename));
            return s;
        }
see all the code here: http://code.google.com/p/epubfixer/sour ... ocument.cs

if you are interested by some code from my tool please do ask
http://www.wololo.net/forum/viewtopic.php?f=25&t=3402
lopezmason
Posts: 5
Joined: Tue Apr 26, 2022 8:35 am

Re: Wagic Editing Tool

Post by lopezmason »

I unzipped the above way, but got an error in the last step. How?
Let's make things more creative. we become what we behold
john4422
Posts: 1
Joined: Thu Oct 13, 2022 2:43 pm

Re: Wagic Editing Tool

Post by john4422 »

We transform your business through assessing, reducing, and managing your security risk. Cyber security services
hennysh
Posts: 2
Joined: Sat Nov 05, 2022 7:59 am

Re: Wagic Editing Tool

Post by hennysh »

The wordle 2 game can be played in many different ways. One way is to simply draw a card from the bag and play that card against the other players. Another way is to play a card for each letter of the alphabet and then play that card against the other players. The third way is to play a card for each letter and then play that card against the other players. The fourth way is to play cards for each letter and then play that card against the other players. The fifth way is to play cards for each letter and then play that card against the other players.
Locked