my skills and awakes is not working! T_T

Philippines

Moderators: waferbaron, Moderators

Forum rules
This server is currently not maintained and tables folder (including connection info) is outdated. Read the wiki for instructions on how to update those information. Please contribute your updated info. Contact Cozzie to join the team as a regular server supporter.
masama
Noob
Noob
Posts: 6
Joined: 21 Oct 2010, 04:05
Noob?: Yes

my skills and awakes is not working! T_T

#1 Post by masama »

this are my skills config..

Code: Select all

useSelf_skill Adrenaline Rush {
	lvl 5
	maxCastTime 0
	minCastTime 0
	hp
	sp
	homunculus_hp
	homunculus_sp
	homunculus_dead
	onAction
	whenStatusActive
	whenStatusInactive Adrenaline Rush
	whenFollowing
	spirit
	aggressives
	monsters
	notMonsters
	stopWhenHit 0
	inLockOnly 0
	notWhileSitting 1
	notInTown 1
	timeout 3
	disabled 0
	inInventory
	manualAI 0
}
useSelf_skill Weapon Perfection {
	lvl 5
	maxCastTime 0
	minCastTime 0
	hp
	sp
	homunculus_hp
	homunculus_sp
	homunculus_dead
	onAction
	whenStatusActive
	whenStatusInactive Weapon Perfection
	whenFollowing
	spirit
	aggressives
	monsters
	notMonsters
	stopWhenHit 1
	inLockOnly 0
	notWhileSitting 1
	notInTown 1
	timeout 1
	disabled 0
	inInventory
	manualAI 0
}
useSelf_skill Power Thrust {
	lvl 5
	maxCastTime 0
	minCastTime 0
	hp
	sp
	homunculus_hp
	homunculus_sp
	homunculus_dead
	onAction
	whenStatusActive
	whenStatusInactive Over Thrust
	whenFollowing
	spirit
	aggressives
	monsters
	notMonsters
	stopWhenHit 1
	inLockOnly 0
	notWhileSitting 1
	notInTown 1
	timeout 3
	disabled 0
	inInventory
	manualAI 0
}
and this is my usable item...

Code: Select all

useSelf_item Awakening Potion {
	hp
	sp
	homunculus_hp
	homunculus_sp
	homunculus_dead
	onAction
	whenStatusActive
	whenStatusInactive Awakening Potion
	whenFollowing
	spirit
	aggressives
	monsters
	notMonsters
	stopWhenHit
	inLockOnly 1
	notWhileSitting 1
	notInTown 1
	timeout 5
	disabled 0
	inInventory
	manualAI 0
}
I guess my potion is working properly...Thanks for helping...
punkiey
Human
Human
Posts: 22
Joined: 03 Feb 2011, 08:10
Noob?: Yes

Re: my skills and awakes is not working! T_T

#2 Post by punkiey »

Firstly, Only used conditions THAT you really need.

Try replace all that skill block using this:

Code: Select all

useSelf_skill Adrenaline Rush { 
lvl 5 
sp > 15% 
whenStatusInactive Adrenaline Rush 
inLockOnly 1 
notWhileSitting 1 
notInTown 1 
} 

Code: Select all

useSelf_skill Power-Thrust { 
lvl 5 
sp > 15% 
whenStatusInactive Power-Thrust 
inLockOnly 1 
notWhileSitting 1 
notInTown 1 
} 

Code: Select all

useSelf_skill Weapon Perfection { 
lvl 5 
sp > 15% 
whenStatusInactive Weapon Perfection 
inLockOnly 1 
notWhileSitting 1 
notInTown 1 
} 
-puNKiey