Auto-remove spell

Snow

Active Member
Is there any way to 'ban' a spell via scripting, so when you get "buffed" with it, you can have it automatic removed. I am sooooo sick and tired of that damn parachute spell.
 

Zandros

Script Author: VGA
Yes... the quick and dirty method of removing buffs would be to create a file in the main 'Scripts' folder and call it something like: DropLev.iss

Edit the file and place the following code within it, be sure to edit it if you like having levitation type buffs.

Code:
function main()
{
	while ${Me(exists)}
	{
		wait 10
		VGExecute /can "Parachute"

		;; add/remove these if you do not like to be levitated
		VGExecute /can "Mind Over Body"
		VGExecute /can "Boon of Alcipus"
		VGExecute /can "Briel's Trill of the Clouds"
		VGExecute /can "Cloudwalk"
		VGExecute /can "Death March"
		VGExecute /can "Deathwalk"
		VGExecute /can "Gift of Alcipus"
		VGExecute /can "Gravity Suspension"
		VGExecute /can "Hollow Symbiote"
		VGExecute /can "Wings of the Avenger"
		VGExecute /can "Group Illusion: Kobold"
		VGExecute /can "Do not feed after midnight"
		VGExecute /can "Tingling Sensation"
	}
}
From within the game, you can type the following to run your script: /run DropLev
 

Snow

Active Member
Beautiful .. love you .. thank you.
I have died/near died way too many times from that straight down fall of hell. You know what I'm talking about if you've gotten knocked off a flying mount and then tried to jump off something, or go down stairs.
 

Zandros

Script Author: VGA
I know what you mean by that... what I hate is getting knocked off your mount and having that Cloudwalk buff. Try going up a set of stairs or run away from a group of angry mobs... if you jump you stop and float down and in the meantime the mobs kill you. lol
 
Top Bottom