Author Topic: The MultiFlute 0.5  (Read 7171 times)

0 Members and 1 Guest are viewing this topic.

Offline Khameleon

  • Script Tester - Team Leader
  • Elite
  • *
  • *
  • Posts: 2574
  • Activity:
    0%
  • Reputation Power: 30
  • Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!
  • Gender: Male
  • Respect: +238
  • Referrals: 0
    • View Profile
Re: The MultiFlute 0.5
« Reply #15 on: November 26, 2011, 12:19:20 PM »
0
the idea behind this idea got me thinking... and this is what I came up with...

Link

Offline DPeterson

  • Newbie
  • *
  • Posts: 6
  • Activity:
    0%
  • Reputation Power: 1
  • DPeterson has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: The MultiFlute 0.5
« Reply #16 on: November 26, 2011, 01:15:28 PM »
0
Here's a bit of code to get ya moving in the right direction so you don't have to target your flutes every time.
The Idea is not bad, what i miss, why only flutes? what is with my regular slayer tools?

It is probably in the other part of my script where I scan for other slayers.  I only posted the flute part to give him help.  Also, heres a handy way to organize all your spawn into types for ease of use later.  Will allow you to scan by slayer type, slayer difficulty, non slayer, and all spawn.  Very helpfull when looking for monsters for provoking.

Code: [Select]
  set !people
  set !forms
  set !summons

  set !nonSlayer1 yab_p_ki_ud_qd_vgb_n_pe_se_to_po_rb_ub ; easy non spell
  set !nonSlayer2 uc_mc_md_je                            ; easy spell
  set !nonSlayer3 db_kqb                                 ; medium non spell
  set !nonSlayer4 r_eb_wd_fd                             ; medium spell
  set !nonSlayer5 is_me_dd_bd_ej_ed_ri_cj_i              ; hard
  for !do 5 1
  {
    if !do = 5
      set !allNonSlayers !nonSlayer5
    else
      set !allNonSlayers !allNonslayers , _ , !nonSlayer . !do
  }
 
  ; Arachnid Slayer
  set !11 empty
  set !12 empty
  set !13 empty
  set !14 empty
  set !15 empty
  ; Elemental Slayer
  set !21 empty
  set !22 empty
  set !23 empty
  set !24 empty
  set !25 dd_bd_ej_ed_ri_cj
  ; Demon Slayer
  set !31 empty
  set !32 uc
  set !33 empty
  set !34 fd
  set !35 me
  ; Reptile Slayer
  set !41 empty
  set !42 empty
  set !43 empty
  set !44 empty
  set !45 empty
  ; Repond Slayer
  set !51 empty
  set !52 empty
  set !53 empty
  set !54 empty
  set !55 is     ; human
  ; Undead Slayer
  set !61 empty
  set !62 empty
  set !63 empty
  set !64 r_eb_wd  ; lichlord,lichlord
  set !65 empty
 
  for !do 1 6
  {
    for !it 5 1
    {
      if !do = 1 && !it = 5
        set !allSpawn !15
      else
      {
        set !combo !do , !it
        set !allSpawn !allSpawn , _ , ! . !combo
      }
      if !it = 5
      {
        set !combo !do , !it
        set ! . !do ! . !combo
      }
      else
      {
        set !combo !do , !it
        set ! . !do ! . !do , _ , ! . !combo
      }
    }
  }

Tags: