Jump to content

jayvz17

Members
  • Posts

    34
  • Joined

  • Last visited

Posts posted by jayvz17

  1. I read this in github. Actually I did not understand why they removed the SQL. Can anyone explain it to me?
    Also, mySQL queyring is easy to me. Or there is other system (just like workbench) to sort/filter  the YAML?

     

    UPDATED:
    SORRY I did not read the whole message. Author said "SQL was compromised. Well, we are happy to say that SQL is still supported"
    But still I wonder which system do I need to use to filter the data in yml. Thanks.

  2. On 8/16/2020 at 11:36 PM, foenne524 said:

    Sure thing. Just download the file and edit the given code from this

      Hide contents

    +    if(sd->bl.m == map_mapname2mapid("prontera")) {
    +        clif_displaymessage(fd, "You can not duel in Prontera.");
    +        return 0;
    +    }

    to this

      Hide contents

    +    if(sd->bl.m != map_mapname2mapid("prontera")) {
    +        clif_displaymessage(fd, "Duels are not available in this map");
    +        return 0;
    +    }

     

     


    Hi, Which file did you add this one?

  3. On 8/17/2020 at 2:03 AM, Patskie said:

    Something like this?

    prontera,150,150,6	script	Sample	100,{
    	if (BaseLevel < 20) end;
    	switch (select("Register", "View List", (getgmlevel() < 99 ? "" : "[^FF0000GM Menu^000000] Clear List"), "Exit")) {
    		case 1:
    			if (inarray($register$, strcharinfo(0)) != -1)
    				mes "Already registered";
    			else {
    				mes "Done registration";
    				$register$[getarraysize($register$)] = strcharinfo(0);
    			}
    			close;
    		case 2:
    			[email protected] = getarraysize($register$);
    			if ([email protected])
    				mes "No list";
    			else {
    				mes "Registration List";
    				for ([email protected] = 0; [email protected] < [email protected]; [email protected]++)
    					mes ([email protected]+1) + ". " + $register$[[email protected]];
    			}
    			close;
    		case 3:
    			deletearray $register$;
    			end;
    	}
    }

     

    I wonder where the data will be save? I think if you restart your server the data/list will be lost.

  4. 11 hours ago, WhiteEagle said:

    Path: conf/battle/misc.conf
    Search for: 
    // Fee for transferring zeny via mail (Note 2)
    // NOTE: this rate is hardcoded in the client, you need to diff your client accordingly if you change this value.
    // Default: 2(2%)
    // 0 = No fee
    mail_zeny_fee: 2

    I already did this no tax was deducted. But the tax in mail it always show. 
    Did you know how to diff the client like you said this one? 'this rate is hardcoded in the client, you need to diff your client accordingly if you change this value.'

  5. 23 hours ago, Ronald said:

    I don't think that it's already implemented but this might help.

     

    https://github.com/rathena/rathena/blob/master/db/pre-re/item_noequip.txt

     

     

    Thanks man. I appreciate your feedback, I already implement this and I still looking for the script level.

     

    13 hours ago, LearningRO said:

    Edit your item_db.txt find ghostring_card

    4047,Ghostring_Card,Ghostring Card,6,20,,10,,,,,,,,16,,,,,{ if(getmapflag(strcharinfo(3),mf_pvp))  { bonus bDefEle,Ele_Ghost; bonus bHPrecovRate,-25; }  },{},{}

     

    Hi, 
    Is there any script level that did not focus on MAP? 
    Example: In MVP map with PK/PVP on.
               GR should be enable when receiving damage in player and GR should no effect in mobs?

     

  6. 39 minutes ago, Start_ said:

    Loop all quest id in db and use checkquest commands

    rathena\doc\script_commands.txt  (Line: 9294)

    Hi, 

    Are you referring this one?
    image.png.8e8623ebd48ae579672ce5d8e4916e95.png
    But as you can see. This data will be recorded in our database once the player is initiate/done the quest .
    Do you know how I can display the  other official quest and tagged as not-started?

    Also, upon checking the official quest is in "quest_db.yml".
    Do you know how can I display this data in my NPC quest board checker?

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.