summaryrefslogtreecommitdiff
path: root/npc/magic/level2-flying-backpack.txt
blob: 7fbf97d6bb42ad3653676b393e863f35994b5c8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
-	script	flying-backpack	NPC32767,{
    if(call("magic_checks")) end;
    if (Sp < 12) end;
    .@level = getskilllv(.school);
    if (.@level < .level) end;
    if (getskilllv(SKILL_MAGIC) < .level) end;
    if (.@level <= 3 && countitem("SilkCocoon") >= 1) delitem "SilkCocoon", 1;
    elif (.@level <= 3) end;
    set @_M_BLOCK, 1; // block casting, until the timer clears it
    addtimer 1000, "Magic Timer::OnClear"; // set the new debuff
    callfunc "adjust_spellpower";
    Sp = Sp - 12;
    misceffect FX_MAGIC_GREEN, strcharinfo(0);
    callfunc "magic_exp";
    @target_id = getcharid(3, @args$);
    if (@target_id < 1 || !(isloggedin(@target_id)) || get(INVISIBLE, @target_id) == 1)
        set @target_id, BL_ID; // fallback to self
    if (distance(BL_ID, @target_id) >= (@spellpower/30)+2) set @target_id, BL_ID;
    if (BL_ID != @target_id) misceffect FX_MAGIC_GENERIC, @args$;
    if (BL_ID == @target_id) set @args$, strcharinfo(0);
    @plugh_time = (@spellpower*500)+5000, @target_id;
    sc_start SC_FLYING_BACKPACK, @plugh_time, 0, @target_id;
    message @args$, "Backpack : Your backpack is lifted by a mystical force; you no longer feel it pressing on your back.";
    @plugh_future = gettimetick(0) + @plugh_time - 100, @target_id;
    addtimer @plugh_time - 100, strnpcinfo(0)+"::OnEnd", @target_id;
    end;

OnEnd:
    if (gettimetick(0) - @plugh_future < 0) end;
    if (sc_check(SC_FLYING_BACKPACK) != 1) end;
    message strcharinfo(0), "Backpack : Your backpack is no longer levitating.";
    misceffect FX_MAGIC_GENERIC, strcharinfo(0);
    end;

OnInit:
    .school = SKILL_MAGIC_NATURE;
    set .invocation$, chr(MAGIC_SYMBOL) + "plugh"; // used in npcs that refer to this spell
    void call("magic_register");
    .level = 2;
    .exp_gain = 1;
    end;
}