Jump to content

Fry

Members
  • Posts

    4
  • Joined

  • Days Won

    1

Fry last won the day on June 4 2023

Fry had the most liked content!

About Fry

  • Birthday 02/12/1994

Profile Information

  • Gender
    Male
  • Location
    Brazil
  • Server
    N/A

Recent Profile Visitors

1503 profile views

Fry's Achievements

Drops

Drops (2/15)

  • Dedicated
  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

8

Reputation

1

Community Answers

  1. View File @whosell with item link Since the new updates no longer include the command, its a modification of the old code created by zephyrus_cr, with the addition of the specific item link. Submitter Fry Submitted 12/20/2022 Category Source Modifications Video Content Author zephyrus_cr  
  2. Version 1.0.0

    327 downloads

    Since the new updates no longer include the command, its a modification of the old code created by zephyrus_cr, with the addition of the specific item link.
    Free
  3. I solved this problem as follows: case UNT_WHISTLE: case UNT_ASSASSINCROSS: case UNT_POEMBRAGI: case UNT_APPLEIDUN: case UNT_HUMMING: case UNT_DONTFORGETME: case UNT_FORTUNEKISS: case UNT_SERVICEFORYOU: if (sg->src_id==bl->id && !(sc && sc->data[SC_SPIRIT] && sc->data[SC_SPIRIT]->val2 == SL_BARDDANCER)) return 0; if (!sc) return 0; if (!sce) sc_start4(ss, bl,type,100,sg->skill_lv,sg->val1,sg->val2,0,sg->limit); // edit this line else if (sce->val4 == 1) { //Readjust timers since the effect will not last long. sce->val4 = 0; //remove the mark that we stepped out delete_timer(sce->timer, status_change_timer); sce->timer = add_timer(tick+sg->limit, status_change_timer, bl->id, type); //put duration back to 3min } break; to: case UNT_WHISTLE: case UNT_ASSASSINCROSS: case UNT_POEMBRAGI: case UNT_APPLEIDUN: case UNT_HUMMING: case UNT_DONTFORGETME: case UNT_FORTUNEKISS: case UNT_SERVICEFORYOU: if (sg->src_id==bl->id && !(sc && sc->data[SC_SPIRIT] && sc->data[SC_SPIRIT]->val2 == SL_BARDDANCER)) return 0; if (!sc) return 0; if (!sce) sc_start4(ss, bl,type,100,sg->skill_lv,sg->val1,sg->val2,0,skill_get_time2(sg->skill_id,sg->skill_lv)); // edit this line else if (sce->val4 == 1) { //Readjust timers since the effect will not last long. sce->val4 = 0; //remove the mark that we stepped out delete_timer(sce->timer, status_change_timer); sce->timer = add_timer(tick+sg->limit, status_change_timer, bl->id, type); //put duration back to 3min } break; This topic is old, but should help someone.
×
×
  • Create New...