Jump to content

imat1

Members
  • Posts

    102
  • Joined

  • Days Won

    6

Posts posted by imat1

  1. 16 hours ago, namerpus18 said:

    I dont think I understand, I mean why is the roulette using only bronze up to the last stage in my roulette? I don't know full mechanics yet, i am reading the src code but I am noob when it comes to src code so I am still dont get it. 

    What i guess is bronze suppose to be for stage 1-2 or 3, silver for stage 4 or so then gold up to the last stage. But my roulette dont use silver or gold even its in laat stage

    That's because you won't consume coin as you progress. You'll only stop moving up and go back to start every time your roulette stop at the most far left prize (which is coin by default).

  2. 1 hour ago, iFox said:

    Good day guys. I was wondering why my emblem not working on my client? I have hosted server. I put the right ip and port. Still not working. I also using latest rathena ver and have web service panel on vnc. What could be the reason? Thank you.

    Make sure your port 8888 is open.

  3. 6 hours ago, zeusc137 said:

    Hi there! I hope all is good!


    What about if my "ragnarok.grf" works without encryption, and I want to encrypt it?

    I added a key "123123" to my "ragnarok.grf" and it stopped working...

    Should I just copy another "cps.dll" from another private server that uses any encryption?


    Thanks in advance for any help! ❤️ 

    No. You need to generate your own cps.dll and paste it inside your ro folder.

  4. 4 hours ago, LadyNanuia said:

    Just to clarify, ive tried using the dress changer made by Secret and i spoke to Secret about it as it uses "changebase" which screws up your skill tree and a few other things, im looking for a way to do this WITHOUT doing that 😃

    If you don't want to do this using changebase, you will encounter lots of weird sprite display. Like costume garments, wings might display on your character's waist or even above the shoulder. Also normal attack animation probably would look weird. And so on. How do i know? I'm telling from my experience xD

  5. 21 minutes ago, ajonck said:

    I can imagine... I know how to fix this using Nemo/Warp now (the visual issue I mentioned),

    but the thing is the weird error I get when I changed that part (and I checked that 2019-06-05 accepted that customization...

    The error I get is just "error" like the screenhost:image.png

    Can i see the list of patch you applied?

    • Like 1
  6. 1 hour ago, ajonck said:

    Hello everyone, thanks if you ever found some time to help me with this!!!

    I have just installed and played really nice on my local server with latest rAthena and kRO client using this "2019-06-05fRagexe_patched.exe"

    But when I'm at CHARACTER CREATION the text is not showing up correctly!

    I faced this issue in the past but I don't remember how I should approach this to fix!

    Thanks for passing by! ❤️

    This is the screenshot show the name not displaying nice:

    image.thumb.png.f53f5750ee82a43c5adf6f490f1c81b5.png

    Patch on nemo/warp

    Change new char name field height
    ChangeNewCharNameHeight
    Allow change height in input field in new char creation dialog

     

    Set value to 20

    • Love 1
  7. 8 hours ago, AinsLord said:

    @crazyarashi

    image.png

    how to fix this SQL error

    thanks

    Upon checking the query, I think there's just a missing + symbol.

    Find the line with:

    query_sql("UPDATE `compendium` SET `quest` = '"+.quest_count+" WHERE `quest` < '"+.quest_count"'");

    Change to:

    query_sql("UPDATE `compendium` SET `quest` = '"+.quest_count+" WHERE `quest` < '"+.quest_count+"'");

  8. 7 hours ago, Winterfox said:

    I didn't see any security issues, but two small things that could be handled a bit smoother.

    The first is to add a check if the items bought can be carried by the player.
     

    if (!checkweight2(@bought_nameid, @bought_quantity)) {
    	mes("Sorry, you can't carry all these items!");
    	close3;
    }

    The second is that if you use shop and the player has not enough zeny even though you want to pay with points, he can't put the item in the buy window. So pointshop is the better option.
     

    -	pointshop	hourly_shop	-1,Goldpc_Points,13534:-1.

    The reason why I didn't use pointshop is because of this warning message.

    image.png.80bda895bfb355fad7936b2b548d2994.png

    It's kind of misleading to me.

    Thanks a lot for this though.

    7 hours ago, Winterfox said:

     

    -	pointshop	hourly_shop	-1,Goldpc_Points,13534:-1.
    
    prontera,156,181,5	script	Hourly Point Manager::GOLDPCCAFE	10380,{
        cutin("ep18_merchant.png", 2);
        callshop("hourly_shop", 1);
        npcshopattach("hourly_shop");
        end;
    
        OnBuyItem:
            mes("[Hourly Point Manager]");
            if (!checkweight2(@bought_nameid, @bought_quantity)) {
                mes("Sorry, you can't carry all these items!");
                close3;
            }
            
            for (.@i = 0; .@i < getarraysize(@bought_nameid); .@i++){
                .@itemIndex = inarray(.Shop, @bought_nameid[.@i]);
                .@costs += (.Shop[.@itemIndex + 1] * @bought_quantity[.@i]);
            }
    
            if (.@costs > Goldpc_Points) {
                mes("You don't have enough Hourly Points.");
                close3;
            }
    
            Goldpc_Points -= .@costs;
            for(.@i = 0; .@i < getarraysize(@bought_nameid); .@i++) {
                getitem(@bought_nameid[.@i], @bought_quantity[.@i]);
                dispbottom("Purchased " + @bought_quantity[.@i] + " x " + getitemname(@bought_nameid[.@i]) + ".");
            }
    
            mes("Purchased successfully!");
            mes("You have ^0000ff" + Goldpc_Points + "^000000 points remaining.");
            close3;
    
        OnInit:
            setarray(.Shop[0], 13534, 1, 13810, 1, 14532, 1, 14606, 1, 12211, 1, 7776, 25);
            npcshopitem("hourly_shop", 13534, 1, 13810, 1, 14532, 1, 14606, 1, 12211, 1, 7776, 25);
    }

    Made me realized a lot of things. Also on OnInit part, I feel so dumb after seeing that I typed the same parameters instead of using for loop. lol

    Again, thanks for your suggestions, which I appreciate.

×
×
  • Create New...