Jump to content

Slammer

Members
  • Posts

    167
  • Joined

  • Last visited

  • Days Won

    7

Posts posted by Slammer

  1. 1 hour ago, Jard said:

    can i request  a job changer

    this da example:

    novice to paladin

    novice to sniper

    for example :

    novice to lord knight

        mes "[Master]";
        mes "are you ready?";
        next;
        if (class == 0) && (JobLevel >= 10) {
        jobchange 4008;
        mes "[Master]";
        mes "you become Lord Knight";
        mes "goodbye";
        close;
        }

  2. 2 hours ago, Mirakol- said:

    good day, anyone has a custom kafra npc that can save, use storage, guild storage, repair items (free), identify items (with fee / item)? can someone share it to me thanks!

    you learn first on :
    npc\kafras\functions_kafras.txt


    then you can configure on :
    npc\kafras\kafras.txt

    • Upvote 1
  3. 4 minutes ago, dikapramantya said:

    Hi, i got this error after change all requirement

    "service_korea" folder to "service_usa"

    "ExternalSettings_KR"; Rename  to "externalsettings_usa"

     

    and i try langtype 1-6 get same error

    errror_langtype.jpg

    try my lua for indonesia and usa.

    lua files.7z

    set langtype 1 for usa and 6 for indonesia

     

    On 8/28/2018 at 10:45 AM, Visual said:

    i'm tested all langtype and works only with 0-7=((

    image.thumb.png.3e790a967db87ed0e82647484deffb56.png

     

    the question is still relevant

     

    up!

    i try for conf for russian but not work to.

  4. 2 hours ago, AinsLord said:

    @Slammercan the VIP ticket add its duration example uses 2 30days will it become 60days?? if so how can i make it 1time use only need

    consume 1st the remaining VIP time to use other VIP ticket

    @AinsLord try use 1 item and check timeleft vip. then try use 2nd item same duration.
    i reminder is calculate of duration 1st 60day + 2nd 60day = 120days

    try this script for timeleft vip

    -    script    Sample    -1,{

    OnPCLoginEvent:
    if (getgmlevel() < 99) end;
        mes "[Points Viewer]";
        mes "Hello "+strcharinfo(0);
        mes ""+#CASHPOINTS+" Cash and "+#KAFRAPOINTS+" Free Cash.";
        mes "-----------------------------------";
        mes "Time VIP left";
        mes ""+vip_status(2)+"";
        mes "-----------------------------------";
    close;
    }

    • Like 1
  5. Thank you for @IsabelaFernandez

    i clarify  :

    3001,VIP Pass 1,VIP Pass 1,0,50,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ vip_time(60*24*7); },{},{} //VIP ID for 7 days
    3002,VIP Pass 2,VIP Pass 2,0,50,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ vip_time(60*24*14); },{},{} //VIP ID for 14 days
    3003,VIP Pass 3,VIP Pass 3,0,50,,70,,,,,0xFFFFFFFF,63,2,,,,,,{ vip_time(60*24*30); },{},{} //VIP ID for 30 days

    The Script Active when SRC VIP mode is on.
    src\config\core.h

    //#define VIP_ENABLE change to #define VIP_ENABLE and recompile.

    For Map/Field/DG/ect

    maybe you can use NPC for acces :

                mes "[ Gate  keeper]";
                if (vip_status(1)) {
                    mes "Will you go to VIP map?";
                    next;
                    menu    "Go to VIP map",vipmap,"No way",no;
                    vipmap:
                    warp "vip.gat",0,0;
                    end;
                    no:
                    mes "VIP map is great.";
                    break;
                } else {
                    mes "Seems you're no longer VIP anymore. You must VIP to acces";
                    break;
                }

    • Upvote 1
    • MVP 1
  6. 4 hours ago, NANORAY said:

    hi, can someone help with this? how to fix this? my robe(bag) sprite penetrating the front of my character. this applies only in this item (Adventurer's Backpack).

    Client Version: 20170517

    data folder: zackdreaver

    resource folder: zackdreaver

    kro: akkarin (latest and fully patched)

    bbag1.PNG.4779a42f07d16143c1b1c1aabbea5765.PNG bbag2.PNG.1fcb85ea637ff81735ae7c522bf41d59.PNG

    Just open :


    luafiles514\lua files\spreditinfo\2dlayerdir_f.lub

    and remove

        [SPRITE_ROBE_IDs.ROBE_WINGS] = LAYER_BIG,
        [SPRITE_ROBE_IDs.ROBE_BAG_OF_ADVENTURER] = LAYER_SMALL,
        [SPRITE_ROBE_IDs.ROBE_WINGS_OF_FALLEN_ANGEL] = LAYER_BIG,
        [SPRITE_ROBE_IDs.ROBE_AMISTR_BAG] = LAYER_SMALL,
        [SPRITE_ROBE_IDs.ROBE_Love_Dad_Wings_2012] = LAYER_BIG,
        [SPRITE_ROBE_IDs.ROBE_KIRIN_WING] = LAYER_BIG,
        [SPRITE_ROBE_IDs.ROBE_Ribbon_Piamat] = LAYER_SMALL

    it will fix your problem.

    • Upvote 3
    • MVP 1
    • Like 1
×
×
  • Create New...

Important Information

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