Jump to content

Ice Bear

Members
  • Posts

    159
  • Joined

  • Last visited

  • Days Won

    4

Posts posted by Ice Bear

  1. 5 hours ago, Tokei said:

    ill not display properly. A lapine box might work better? Not sure. You'll probably have to end up doing it with a boring script though, since it's hard to handle two refines otherwise.

    I see i just remember a shop that sells items with refine (eAthena days) cant find it anymore x-x but thanks tokei for giving us explanations ❤️

  2. I think you need to remove the max instance in the skill_db.yml ? did you check it ? 

    ```

    REMOVE THE ACTIVE INSTANCE? DID U TEST

     - Id: 405
        Name: PF_SPIDERWEB
        Description: Fiber Lock
        MaxLevel: 1
        Type: Magic
        TargetType: Attack
        DamageFlags:
          NoDamage: true
        Range: 7
        Hit: Single
        HitCount: 1
    -   ActiveInstance: 3
        Duration1: 16000
        Duration2: 8000
        Requires:
          SpCost: 30
          ItemCost:
            - Item: Spiderweb
              Amount: 1
        Unit:
          Id: Spiderweb
          Interval: -1
          Target: Enemy
          Flag:
            RemovedByFireRain: true
        Status: SpiderWeb
        
    ```

  3. On 12/29/2014 at 1:12 PM, Delta said:
     

     

    I encounter this.

    I'm not sure if you still needed this but here's a fix.

    OnAtcommand:
    if(#Mission_Count > 0){
    callsub Mission_Status;
    } else {
    showscript "[Hunting Mission] : You didn't take a mission, talk to hunting mission npc to get a new hunting mission.";
    emotion et_meh;
    }
    end;

     

  4. On 10/10/2022 at 7:09 AM, Litro Endemic said:

    with rAthena commit ac7292c instance system can do this just set the owner instance to IM_NONE and set the time limit of the instance to unlimited in the instance_db.yml

    sample entry in instance_db.yml.

      - Id: 777
        Name: Payon Clone
        TimeLimit: 0
        IdleTimeOut: 0
        Enter:
          Map: payon
          X: 150
          Y: 150

    on the script for instance creation

    .@instance_name$ = "Prontera Clone";
    .@instance_mode  = IM_NONE;
    instance_create(.@instance_name$, .@instance_mode);

     

    thank you for this ? I will test it now

    thanks for this again ? very helpful haha

×
×
  • Create New...