[HELP] Variable Does Not Exist

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

Moderator: Moderators

deeh16
Noob
Noob
Posts: 19
Joined: 14 Dec 2008, 06:07
Noob?: Yes

[HELP] Variable Does Not Exist

#1 Post by deeh16 »

ive been experimenting in my "Change LockMap"
and found this problem

Code: Select all

automacro prtfild08 {
location prontera
console /Kafra Employee: Prontera. Thank you for/i
call {
do ai manual
pause 1
do conf lockMap prt_fild08
do conf buyAuto Orange Potion { << the Kore said "Conf buyAuto Variable does not exist"
do conf storageAuto_npc prontera 151 29
do conf sellAuto_npc prt_in 126 76
do conf npc prt_in 126 76 << the Kore said "Conf buyAuto Variable does not exist"
pause 1
do ai on
}
}
what is the proper variable for them or is theres an available list of variables to see?

thx and more power to OPENKORE
Image
User avatar
help_us
Testers Team
Testers Team
Posts: 106
Joined: 04 Apr 2008, 21:53
Noob?: No
Location: Asia

Re: [HELP] Variable Does Not Exist

#2 Post by help_us »

Code: Select all

do conf buyAuto_0 Orange Potion # buyAuto first block

Code: Select all

do conf buyAuto_1 Orange Potion #buyAuto second block
and..

Code: Select all

do conf npc prt_in 126 76 << the Kore said "Conf buyAuto Variable does not exist"
what was this npc for? buyAuto or sellAuto or storageAuto?
Image
Image
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: [HELP] Variable Does Not Exist

#3 Post by EternalHarvest »

deeh16
Noob
Noob
Posts: 19
Joined: 14 Dec 2008, 06:07
Noob?: Yes

Re: [HELP] Variable Does Not Exist

#4 Post by deeh16 »

help_us wrote:

Code: Select all

do conf buyAuto_0 Orange Potion # buyAuto first block

Code: Select all

do conf buyAuto_1 Orange Potion #buyAuto second block
and..

Code: Select all

do conf npc prt_in 126 76 << the Kore said "Conf buyAuto Variable does not exist"
what was this npc for? buyAuto or sellAuto or storageAuto?
buyauto worked... thx a lot..

only this problem remain..
npc for buyauto

Code: Select all

buyAuto Orange Potion {
	npc <<<<<<
	standpoint
	distance 5
	price
	minAmount 2
	maxAmount 3
}
Image
User avatar
help_us
Testers Team
Testers Team
Posts: 106
Joined: 04 Apr 2008, 21:53
Noob?: No
Location: Asia

Re: [HELP] Variable Does Not Exist

#5 Post by help_us »

Code: Select all

do conf buyAuto_0_npc
Image
Image