Signup Now
Results 1 to 2 of 2

Thread: 200 + Summon

  1. #1
    Free User
    Join Date
    Jan 2017
    Posts
    2
    Reputation
    10
    Rep Power
    0

    200 + Summon

    The below code is supposed to summon a familiar every 30 min, however it only summons the familiar once and after the 30 min it doesn't attempt to re-summon. Any ideas what wrong?

    Code:
    auto(1800000)
    
    local UseSummon = true
    local Sections = {"Hunt"} -- {"Hunt"} or {"Floor 1", "Floor 2"} etc...
    
    --=======================================
    
    local function SUMMON()
    	if $vocshort == 'K' then
    		summon = 'utevo gran res eq'
    	elseif $vocshort == 'P' then
    		summon = 'utevo gran res sac'
    	elseif $vocshort == 'S' then
    		summon = 'utevo gran res ven'
    	elseif $vocshort == 'D' then
    		summon = 'utevo gran res dru'
    	end
    	return summon
    end
    
    if $connected then
    	if UseSummon and $level >= 200 then
    		cast(SUMMON())
    		wait(300,500)
    	end
    end

  2. #2
    Wind Powered wybocenooba's Avatar
    Join Date
    Jan 2014
    Posts
    409
    Reputation
    16
    Rep Power
    21
    why won't you just use it like that

    HTML Code:
    auto(200)
    if $wptsection == "cave" then
    cast('utevo gran res sac')
    wait(1805000)
    end

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •