Possible error in clumsy spell script

Open discussion forum. For topics that do not fit anywhere else.
Locked
Yukiko
Distro Developer
Posts: 2826
Joined: Thu Feb 02, 2006 1:41 pm

Possible error in clumsy spell script

Post by Yukiko »

While converting my spell scripts to be compliant (mostly) with the Distro damage system et. al. I believe I found a typo in the clumsy script.

It's in the call to TS_StartTimer.

Code: Select all

TS_StartTimer(targ, "clumsy", duration, points, mobile);
The 'C' in the word "clumsy" should be capitalized I believe because the entry in the timedScripts.cfg for clumsy is capitalized.


From timedScripts.cfg

Code: Select all

TimerElem Clumsy
{
	Name			Clumsy
	Script			subScripts/magery/clumsy
	EndScript		subScripts/magery/endClumsy

	NoCure			1
	Type			C
}
Locked