PDA

View Full Version : sigils script not working for me?



deadly
06-08-2009, 06:44 AM
i downloaded the sigils script and it wont cast minor bane for me


#Sigils!
#["Sigil Contact", 9703, 1, 0]
#["Sigil of Resolve", 9704, 0, 5]
#["Sigil Minor Bane", 9705, 3, 3]
#["Sigil Defense", 9707, 5, 5]
#["Sigil Offense", 9708, 5, 5]
#["Sigil Minor Protection", 9710, 5, 10]
#["Sigil Mending", 9713, 10, 15]
#["Sigil Concentration", 9715, 0, 30]
#["Sigil Major Bane", 9716, 10, 10]
#["Sigil of Power", 0, 0, 50]

checkingonspellsA = ["Sigil Contact", 9703, 1, 0]
checkingonspellsH = [ ["Sigil Concentration", 9715, 0, 30],
["Sigil Mending", 9713, 10, 15],
["Sigil Offense", 9708, 5, 5],
["Sigil Major Bane", 9716, 10, 10],
["Sigil of Resolve", 9704, 0, 5]]

loop {
while !checkdead
if righthand == "gilded dragon-carved runestaff" or lefthand == "gilded dragon-carved runestaff"
waitrt?
checkingonspellsH.each do |checkit|
waitrt?
if !checkspell(checkit[1]) and checkmana(checkit[2]) and checkstamina(checkit[3])
put checkit[0]
pause("2s")
end
end
end
waitrt?
if !checkspell(checkingonspellsA[1]) and checkmana(checkingonspellsA[2]) and checkstamina(checkingonspellsA[3])
put checkingonspellsA[0]
pause("2s")
end
pause("2s")
waitrt?
if !checkmana(16) and checkstamina(65)
put "Sigil of Power"
pause("2s")
end
end
pause("10s")
}



the normal script had bow and longbow in the check hand. i tried putting just runestaff in there and then i copied and pasted my actual runestaff in there and it still wont cast sigil of minor bane for me at all.

Deathravin
06-08-2009, 12:19 PM
Do you see how it's only set to cast Major Bane, concentration, offensive, mending, and resolve?
You have to change the checkingonspellsH and checkingonspellsA to what you want it to cast... A = all the time, and H = only when a weapon is in your hand.

Change "Guilded dragon-carved runestaff" to "runestaff" btw.

It wasn't really meant for anybody but the author to use it. So looks like he set it up the way he wanted it and left it.

deadly
06-08-2009, 10:23 PM
got it thanks.