Jump to content

  •  

alohadoubt

Member Since 30 Jan 2013
Offline Last Active Jan 15 2015 12:28 AM
-----

Posts I've Made

In Topic: Thor Patcher

15 January 2015 - 12:24 AM

Nope I didn't say that it was the issue, I'm saying that if you can apply that feature on 2.6.1.66

that progress bar update is awesome for skin appearance.


In Topic: Thor Patcher

01 January 2015 - 11:02 PM

I've been using thor for many years now and never experience major issues only after you publish ver2.6.1.66+ the issues occurred. And I think the most stable right now is 2.6.1.66 no offense.

 

I also notice while patching the download speed is not normal.

 

that's why we reverted to 2.6.1.66. Is it possible that you implement this feature

[2014-03-29] Aeomin - Progress bar now uses system native style, change color feature is deprecated. Use image based progress bar if needed.

in 2.6.1.66


In Topic: Thor Patcher

01 December 2014 - 12:00 PM

same here I'm having issues patching in latest thor and also the .dat file, the latest thor doesn't read the old .dat file so when the patcher.exe is replace it patch again in the very first patch.


In Topic: #CASHPOINTS and #KAFRAPOINTS

29 August 2014 - 01:02 AM

perfect this seems to work

 

           do    {
                    input @ticket;
                } while (@ticket < 1 || @ticket > 1000);

                    if(countitem(30801)<@ticket)    {
                        cutin "kafra_06.bmp",255;
                        mes .@adikrepname$;
                        mes "Insufficient A.D. tickets. Please come back when you have enough tickets.";
                        close;
                    }
                    delitem 30801,@ticket;
                    set #CASHPOINTS, #CASHPOINTS+(@adtpoints*@ticket);
                    cutin "kafra_06.bmp",255;
                    mes .@adikrepname$;
                    mes "Cash Points Added.";
                    close;

 

thanks


In Topic: #CASHPOINTS and #KAFRAPOINTS

28 August 2014 - 11:42 PM

           input @ticket;
                    if(countitem(30801)<@ticket)    {
                        cutin "kafra_06.bmp",255;
                        mes .@adikrepname$;
                        mes "Insufficient A.D. tickets. Please come back when you have enough tickets.";
                        close;
                    }
                    delitem 30801,@ticket;
                    set #CASHPOINTS, #CASHPOINTS+(@adtpoints*@ticket);
                    cutin "kafra_06.bmp",255;
                    mes .@adikrepname$;
                    mes "Cash Points Added.";
                    close;

let say if the user input -1 or just 0 or letter

how do I add additional check on user input?