Changing Fire Bolt skill level

For everything NOT server specific support. Do NOT ask for connectivity help here!.

Moderator: Moderators

class1c
Human
Human
Posts: 34
Joined: 30 Jun 2012, 03:49
Noob?: Yes

Changing Fire Bolt skill level

#1 Post by class1c »

I am trying to have my bot Fire Bolt twice. First with level 10, and after use level 5.

I tried searching forums but I couldn't find anything related although I'm sure it's somewhere.

My idea was to try the attackComboSlot but it's not working. I tried the following:

Code: Select all

attackSkillSlot Fire Bolt {
	lvl 10
	dist 7
	maxCastTime 0.1
	minCastTime 0
	sp > 5
	monsters
	maxUses 
}

attackComboSlot Fire Bolt {
	lvl 5
	dist 7
	sp > 5
	monsters
	notMonster
	afterSkill Fire Bolt
	waitBeforeUse 0.3
}
dracus_loki
Human
Human
Posts: 29
Joined: 13 Jul 2012, 06:32
Noob?: Yes

Re: Changing Fire Bolt skill level

#2 Post by dracus_loki »

Put lvl 10 max uses to 1-2 and leave lvl 5 max uses to blank , tht will work, or use macro
class1c
Human
Human
Posts: 34
Joined: 30 Jun 2012, 03:49
Noob?: Yes

Re: Changing Fire Bolt skill level

#3 Post by class1c »

is this not possible?
good1
Human
Human
Posts: 24
Joined: 18 Jul 2012, 11:48
Noob?: No

Re: Changing Fire Bolt skill level

#4 Post by good1 »

try using this..

Code: Select all

attackSkillSlot Fire Bolt {
   lvl 10
   dist 7
   maxCastTime 0.1
   minCastTime 0
   sp > 5
   monsters
   maxUses 1
}

attackSkillSlot Fire Bolt {
   lvl 5
   dist 7
   maxCastTime 0.1
   minCastTime 0
   sp > 5
   monsters
   maxUses
}
krisma
Human
Human
Posts: 36
Joined: 05 Mar 2009, 07:47
Noob?: Yes

Re: Changing Fire Bolt skill level

#5 Post by krisma »

attackSkillSlot Fire Bolt {
lvl 10
dist 7
maxCastTime 0.1
minCastTime 0
sp > 5
monsters add monster name for lvl 10 firebolt
maxUses
}

attackComboSlot Fire Bolt {
lvl 5
dist 7
sp > 5
monsters add monster name for lvl 5 firebolt
notMonster
afterSkill Fire Bolt
waitBeforeUse 0.3
}

EX.
attackComboSlot Fire Bolt {
lvl 5
dist 7
sp > 5
monsters Poring
notMonster
afterSkill Fire Bolt
waitBeforeUse 0.3
}