I wrote a concept thread how a bot would basically work with this in the AA forum. if you want you can pick it up
I already did it. Now im wondering how to make a script. Do I need 2 make a char profile like in micromacro? I just need some advices how 2 make it attack a mob or it is already ...
Search found 19 matches
- Sat Jan 10, 2015 3:54 am
- Forum: ArcheAge
- Topic: Script request
- Replies: 8
- Views: 9344
- Fri Jan 09, 2015 10:35 am
- Forum: ArcheAge
- Topic: Script request
- Replies: 8
- Views: 9344
Re: Script request
i can see things are gooing forward in making AA botalble
are there any instructions how 2 make youre own script?
- Fri Nov 28, 2014 6:35 pm
- Forum: ArcheAge
- Topic: Script request
- Replies: 8
- Views: 9344
Script request
Hi, i know that AA is still far away in the fog with boting but is there a possibility 2 create a scrpit that attaks mobs with 1 skill constantly when they are close (like 3m) to me and after killing them it take's the loot? it does not need 2 move only to attack and take the loot. Thanks 4 answers
- Fri Sep 26, 2014 6:39 am
- Forum: Userfunctions, waypoint scripts, etc.
- Topic: EOJ farm function help
- Replies: 13
- Views: 6128
Re: EOJ farm function help
There is a lot of posts about this topic. Let me see if I can scrounge around and come up with a simple function that waits for the event start message. BTW. I don't think there is any need to wait for the end message.
function waitForEventStart()
local gomsg = getTEXT("SC_ZONE_PE_3TH_ST1START ...
function waitForEventStart()
local gomsg = getTEXT("SC_ZONE_PE_3TH_ST1START ...
- Fri Sep 26, 2014 3:56 am
- Forum: Userfunctions, waypoint scripts, etc.
- Topic: EOJ farm function help
- Replies: 13
- Views: 6128
Re: EOJ farm function help
Am I right in understanding that you will run this function after you have finished your events and you want it to wait for the end of event message then wait for the start of event message before continuing? Then it would be something like this.
function EventEnd()
repeat
yrest(100)
TBES ...
function EventEnd()
repeat
yrest(100)
TBES ...
- Thu Sep 25, 2014 7:01 pm
- Forum: Userfunctions, waypoint scripts, etc.
- Topic: EOJ farm function help
- Replies: 13
- Views: 6128
EOJ farm function help
Hi, i have found this function i want 2 chang it but i need some help as always :( function EventStart()
repeat
TBES = RoMScript('getevmessage()')
until (TBES == "|cffffff80Wydarzenie regionalne rozpocz\169te ponownie!|r")
printf("Do dzie\136a !");
end ,as I understand it that fnc will do smth ...
repeat
TBES = RoMScript('getevmessage()')
until (TBES == "|cffffff80Wydarzenie regionalne rozpocz\169te ponownie!|r")
printf("Do dzie\136a !");
end ,as I understand it that fnc will do smth ...
- Sat Sep 20, 2014 1:32 am
- Forum: Runes of Magic
- Topic: DoD (First boss solo farm) Better for R/S
- Replies: 53
- Views: 33120
Re: DoD (First boss solo farm) Better for R/S
the problem is :
Unknown profile skill ROGUE_PREMEDITATION. Check your manual castings (e.g. in the eventos or waypoints files). Be sure the skill is in the skills section of your profile.
someone can help me???
thanks!!!
U need 2 put the that skill in youre character settings profile. <skill ...
Unknown profile skill ROGUE_PREMEDITATION. Check your manual castings (e.g. in the eventos or waypoints files). Be sure the skill is in the skills section of your profile.
someone can help me???
thanks!!!
U need 2 put the that skill in youre character settings profile. <skill ...
- Thu Sep 18, 2014 6:29 am
- Forum: Runes of Magic
- Topic: Code problem
- Replies: 7
- Views: 2930
Re: Code problem
Try this
while getCurrency("honor") > 1000 do
store:buyItem(x, 57)
yrest(5000)
RoMScript("CloseAllWindows()")
repeat
inventory:useItem(x)
yrest(2000)
until inventory:itemTotalCount(x) == 0
end That will keep buying and using all the items until your honor is less than 1000. I don't ...
while getCurrency("honor") > 1000 do
store:buyItem(x, 57)
yrest(5000)
RoMScript("CloseAllWindows()")
repeat
inventory:useItem(x)
yrest(2000)
until inventory:itemTotalCount(x) == 0
end That will keep buying and using all the items until your honor is less than 1000. I don't ...
- Thu Sep 18, 2014 5:15 am
- Forum: Runes of Magic
- Topic: Code problem
- Replies: 7
- Views: 2930
Re: Code problem
a question i can buy up to 58 items at once then i want 2 close the store use the items and start buying them again till i have less than 1k of honor is that possible?
Code:
if getCurrency("honor") > 1000 then
store:buyItem(x, 57)
yrest(5000)
RoMScript("CloseAllWindows()")
inventory:useItem ...
Code:
if getCurrency("honor") > 1000 then
store:buyItem(x, 57)
yrest(5000)
RoMScript("CloseAllWindows()")
inventory:useItem ...
- Wed Sep 17, 2014 2:20 pm
- Forum: Runes of Magic
- Topic: Code problem
- Replies: 7
- Views: 2930
Re: Code problem
BlubBlab wrote:You missing a closing ) at least.
Code: Select all
if (getCurrency("honor") >= 25000) then __WPL:setWaypointIndex(__WPL:findWaypointTag("wracamy")) end fly()
- Wed Sep 17, 2014 2:11 pm
- Forum: Runes of Magic
- Topic: Code problem
- Replies: 7
- Views: 2930
Re: Code problem
A basic ' if ' statement should look like this
if condition then
-- commands
end
Notice the ' end ' at the end.
i have tried with the ' end ' at the end and without it still fails... <onLoad>
speed()
</onLoad>
<!-- # 1 --><waypoint x="5121" z="2510" y="0" tag="farma">
if (getCurrency ...
if condition then
-- commands
end
Notice the ' end ' at the end.
i have tried with the ' end ' at the end and without it still fails... <onLoad>
speed()
</onLoad>
<!-- # 1 --><waypoint x="5121" z="2510" y="0" tag="farma">
if (getCurrency ...
- Wed Sep 17, 2014 12:50 pm
- Forum: Runes of Magic
- Topic: Code problem
- Replies: 7
- Views: 2930
Code problem
Hello i some problems with my code <!-- # 2 --><waypoint x="5121" z="2510" y="0">
if (getCurrency("honor") >= 25000) then
__WPL:setWaypointIndex(__WPL:findWaypointTag("wracamy")
fly()
</waypoint>
<!-- # 3 --><waypoint x="5070" z="2565" y="69"> </waypoint>
what is wrong with it ? it gets a LUA ...
if (getCurrency("honor") >= 25000) then
__WPL:setWaypointIndex(__WPL:findWaypointTag("wracamy")
fly()
</waypoint>
<!-- # 3 --><waypoint x="5070" z="2565" y="69"> </waypoint>
what is wrong with it ? it gets a LUA ...
- Wed Sep 17, 2014 7:28 am
- Forum: Runes of Magic
- Topic: Tag OnLoad?
- Replies: 7
- Views: 3183
Re: Tag OnLoad?
thx it helped but i have 2 more question if i would like 2 buy and use the bought item and rebuy them if u have more than 1000 honor store:buyItem(x, y)
then inventory:useItem(y) until inventory:useItem(y) ==0
if 1000< getCurrency("honor") then ???
yrest(500) in other words i would like 2 use ...
then inventory:useItem(y) until inventory:useItem(y) ==0
if 1000< getCurrency("honor") then ???
yrest(500) in other words i would like 2 use ...
- Wed Sep 17, 2014 5:53 am
- Forum: Runes of Magic
- Topic: Tag OnLoad?
- Replies: 7
- Views: 3183
Re: Tag OnLoad?
repeat
-- Your code
until SomeCondition I don't know what condition you would use. When would you want it to stop? If you don't want it to stop you can just use "until false".
i think the stop point would be when he has less then 1000 honor then if MinHonor > getCurrency("honor") then or smth ...
-- Your code
until SomeCondition I don't know what condition you would use. When would you want it to stop? If you don't want it to stop you can just use "until false".
i think the stop point would be when he has less then 1000 honor then if MinHonor > getCurrency("honor") then or smth ...
- Sun Sep 14, 2014 8:30 am
- Forum: Runes of Magic
- Topic: sell bags
- Replies: 3
- Views: 1782
Re: sell bags
So you don't want to use the bot sell function but just want to use those Sellslotsn() functions from the addon? Did you try just deleting those lines with Mcountround() and Rightbag in them?
yes i want 2 use the function. I did delet the lines its sell items if I execute just the sell script ...
yes i want 2 use the function. I did delet the lines its sell items if I execute just the sell script ...
- Sun Sep 14, 2014 5:11 am
- Forum: Runes of Magic
- Topic: sell bags
- Replies: 3
- Views: 1782
sell bags
Hi
i have downloaded latly a wpt file with this sell scrpit it has a config on the begining <!-- FUNCTION SELL PNJ -->
function selling()
if sellright == true
then
player:openStore(117127)
if sellbag1 == true
then RoMScript("Sellslots1()")
yrest(1000)
end
if sellbag2 == true
then ...
i have downloaded latly a wpt file with this sell scrpit it has a config on the begining <!-- FUNCTION SELL PNJ -->
function selling()
if sellright == true
then
player:openStore(117127)
if sellbag1 == true
then RoMScript("Sellslots1()")
yrest(1000)
end
if sellbag2 == true
then ...
- Thu Sep 11, 2014 8:05 am
- Forum: Userfunctions, waypoint scripts, etc.
- Topic: Drill Ground: Destiny
- Replies: 11
- Views: 6076
Re: Drill Ground: Destiny
ok i have tested it and it worsk fine till it open a cheast with a mimic then the char is just standing and trying 2 kill it. Maybe i did smth wrong with the configuration in my profile. Any 1 can help me out?
- Tue Sep 09, 2014 4:12 pm
- Forum: Runes of Magic
- Topic: CastspellbyID/Name
- Replies: 2
- Views: 2025
Re: CastspellbyID/Name
Now its casting both skills its end up using
THX
THX
- Tue Sep 09, 2014 2:05 pm
- Forum: Runes of Magic
- Topic: CastspellbyID/Name
- Replies: 2
- Views: 2025
CastspellbyID/Name
Hi,
i have a problem with a skill i want 2 use rouge fervent atack but the bot is not casting it dont know why... I tried 2 cast it by name in my language its "Szale\241czy Atak" and nothing has happend orginal the script uses eng skill name but its still not using it... i have seted up my char ...
i have a problem with a skill i want 2 use rouge fervent atack but the bot is not casting it dont know why... I tried 2 cast it by name in my language its "Szale\241czy Atak" and nothing has happend orginal the script uses eng skill name but its still not using it... i have seted up my char ...