console /regex/ not working

All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.

Moderator: Moderators

Message
Author
User avatar
twist3d
Testers Team
Testers Team
Posts: 94
Joined: 09 Sep 2009, 04:34
Noob?: No
Location: USA

console /regex/ not working

#1 Post by twist3d »

So I'm trying to make an automacro that works when you talk to the kafra and set your respawn, however the kafra chat is not being recognized as a console /regex/ expression, or a system /regex/ expression.

Here is what I have:

Code: Select all

automacro clearout {
	system /Your Respawn Point/i
	call {
		do conf lockMap @eval($::config{savePart})
		do conf lockMap_x none
		do conf lockMap_y none
		do conf savePart none
	}
}
Basically I want the macro to call this after its set its respawn location.
Member since 09/09/09, botter since its first creation days. Thanks Kura for the original Kore.

iMikeLance
Moderators
Moderators
Posts: 208
Joined: 01 Feb 2010, 17:37
Noob?: No
Location: Brazil - MG
Contact:

Re: console /regex/ not working

#2 Post by iMikeLance »

twist3d wrote:So I'm trying to make an automacro that works when you talk to the kafra and set your respawn, however the kafra chat is not being recognized as a console /regex/ expression, or a system /regex/ expression.

Here is what I have:

Code: Select all

automacro clearout {
	system /Your Respawn Point/i
	call {
		do conf lockMap @eval($::config{savePart})
		do conf lockMap_x none
		do conf lockMap_y none
		do conf savePart none
	}
}
Basically I want the macro to call this after its set its respawn location.

Code: Select all

system /Your Respawn Point/i
Should be:

Code: Select all

console /Your Respawn Point/i

Post Reply