Search found 283 matches

by kenzu38
Fri May 06, 2016 7:15 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: userfunction_BattleGround
Replies: 15
Views: 8423

Re: userfunction_BattleGround

2016-03-11 04:16:14 - .../scripts/rom/userfunctions/userfunction_BattleGround.lua :63: bad argument #1 to 'pairs' (table expected, got string) Line 63 is this: for k,v in pairs(RoMScript("BATTLE_GROUND_COLUMN_LIST")) do if v == bgtoenter then indexnum = k break end Just fiddling around wi...
by kenzu38
Fri May 06, 2016 7:04 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: Item Shop
Replies: 4
Views: 2888

Re: Item Shop

Taking a break from BDO and just logged back in to the game today to check out the new Mirrorworld I read in a patch note some time ago. Haven't read about the item shop rework patch though so I was surprised by this. There was nothing wrong with the old shop, so this is probably for security. I mus...
by kenzu38
Fri May 06, 2016 6:37 am
Forum: RoM general
Topic: housemaid macro question
Replies: 3
Views: 3803

Re: housemaid macro question

i use ingame /script TargetNearestFriend() /script UseAction(1) /script ChoiceOption(2) tryin to change class but wont select it. is there a differnt code for the house maids? /script ChoiceOption() doesnt work for some reason You're probably talking to the maid inside the house? Then try: /run Tar...
by kenzu38
Fri May 06, 2016 6:31 am
Forum: Runes of Magic
Topic: wardon profile question
Replies: 1
Views: 1377

Re: wardon profile question

Try manaper for mana. If it doesn't work, try maxmanaper.
by kenzu38
Fri May 06, 2016 6:30 am
Forum: Runes of Magic
Topic: cast spells based on mob strength or hp ?how?
Replies: 1
Views: 1291

Re: cast spells based on mob strength or hp ?how?

Not sure but I think these can be done by having a custom onPreSkillCast in your profile. Formula for determining strong mobs is entirely up to you. You can either go by HP or by Level. Untested and might have errors, but here's what I came up with. I think it'll get you started in the right directi...
by kenzu38
Fri May 06, 2016 5:09 am
Forum: Runes of Magic
Topic: Read Conversations with NPC
Replies: 4
Views: 2443

Re: Read Conversations with NPC

Code: Select all

RoMScript("GetSpeakDetail()")
by kenzu38
Fri Jan 08, 2016 6:42 am
Forum: RoM general
Topic: marco help
Replies: 6
Views: 9563

Re: marco help

Hmm, I think you'll have to add a wait in between. The game probably takes time to register the switch.

So, try it like this:

Code: Select all

/run SwitchToRaid()
/wait 2
/run for i = 1, 6 do SwithRaidAssistant(UnitRaidIndex("raid"..i),true) end
by kenzu38
Thu Jan 07, 2016 4:32 am
Forum: RoM general
Topic: Maxim number of quests in questbook!
Replies: 2
Views: 7334

Re: Maxim number of quests in questbook!

Can't be bothered finding that particular code from the bot. But you can just put the checking code in your waypoint before it accepts a quest: if RoMScript("GetNumQuestBookButton_QuestBook()") == maxnumberofquestsallowed then -- can't take any more quests. else AcceptQuest() end Edit: ret...
by kenzu38
Thu Jan 07, 2016 4:22 am
Forum: RoM general
Topic: marco help
Replies: 6
Views: 9563

Re: marco help

That's because the devs misspelled that function.

So this should work:

Code: Select all

SwithRaidAssistant( UnitRaidIndex( unit ) , true  );
by kenzu38
Thu Jan 07, 2016 4:11 am
Forum: Runes of Magic
Topic: Waypoint file without waypoint
Replies: 6
Views: 2583

Re: Waypoint file without waypoint

Just to add, you can also use:

Code: Select all

repeat
until false
for an infinite loop.
by kenzu38
Thu Jan 07, 2016 3:57 am
Forum: Runes of Magic
Topic: New Mounts
Replies: 3
Views: 2019

Re: New Mounts

Had a quick look at the player:mount() function: -- Find mount if RoMScript("PartnerFrame_GetPartnerCount(2)") > 0 then -- There is a mount in the partner bag. Assign the mountmethod. mountMethod = "partner" elseif inventory then -- Make sure inventory has been mapped. mount = in...
by kenzu38
Thu Jan 07, 2016 3:50 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: Arcanium Spam Waypoint
Replies: 19
Views: 26705

Re: Arcanium Spam Waypoint

Ok, I was focusing on other games I'm playing since they had better events so... Anyways, you guys probably have solved your issues by now but I'm gonna post possible solutions I can think of to help other people in the future. but how do I re-login after I got kicked to the login screen? otherwise ...
by kenzu38
Thu Jan 07, 2016 3:24 am
Forum: Runes of Magic
Topic: ChangeChar question
Replies: 1
Views: 1122

Re: ChangeChar question

but my question is can i make it change char after i complete a quest Of course, you can. Just add ChangeChar() after CompleteQuestByName() is there anyway for the bot to know that one quest is done then log on to the next. Looking at the code you posted, you're probably working with dailies, so yo...
by kenzu38
Fri Nov 13, 2015 1:41 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: Arcanium Spam Waypoint
Replies: 19
Views: 26705

Re: Arcanium Spam Waypoint

Ok, v1.1 is up. I recommend downloading it again even for those who had no problems before. It has some added safety measures for preventing chars to get stuck in a loop. The runtimelimit code also won't work on the earlier version. question: do you know if it's possible to tweak the script to join ...
by kenzu38
Fri Nov 13, 2015 11:32 am
Forum: Userfunctions, waypoint scripts, etc.
Topic: Arcanium Spam Waypoint
Replies: 19
Views: 26705

Re: Arcanium Spam Waypoint

Hmm, seems like an error with getbadges() function, I'm guessing it's related to printing while there's a loading screen, so it can't do RoMScript. It doesn't throw an error for me though. We must be running different versions of the bot or MM. Anyway, I'll post a new version in a few mins that woul...
by kenzu38
Thu Nov 12, 2015 6:12 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: userfunction_BattleGround
Replies: 15
Views: 8423

Re: userfunction_BattleGround

I'm guessing you guys are not using an english client that's why what noobbotter posted doesn't work for you. Anyway, I polished the userfunction and uploaded a new version. It's recommended that you guys download the latest version as I only found out today that you could get kicked out of queue. T...
by kenzu38
Thu Nov 12, 2015 6:09 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: Arcanium Spam Waypoint
Replies: 19
Views: 26705

Arcanium Spam Waypoint

So, here's a better version of the waypoint I posted in the runes of magic section. It has more user options, just read the file and just ask here what you don't understand. You'll need the userfunction_Battleground to run this file. Read the second post on that page for instructions on how to preve...
by kenzu38
Tue Nov 10, 2015 6:48 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: userfunction_BattleGround
Replies: 15
Views: 8423

Re: userfunction_BattleGround

Ok, so to prevent the bot to throw an error, you will have to edit pawn.lua and settings.lua. Frankly, I'm not sure if they're the only ones you need to edit but so far I didn't get errors in the short time that I was testing the userfunction. You probably also have to edit your profiles. Either way...
by kenzu38
Tue Nov 10, 2015 6:07 pm
Forum: Userfunctions, waypoint scripts, etc.
Topic: userfunction_BattleGround
Replies: 15
Views: 8423

userfunction_BattleGround

Ok, so here's a userfunction for queueing for battlegrounds. It also has some other functions related to battlegrounds. I'll probably add some more later when I find some other useful stuff. Only worked on this quickly so I haven't really had time to think things through. EDIT: Oh and btw, if you're...
by kenzu38
Tue Nov 10, 2015 1:53 pm
Forum: Runes of Magic
Topic: Arcanium arena
Replies: 8
Views: 4893

Re: Arcanium arena

I see. Never entered the arena before, so I didn't know how it worked. So by what you're saying, I presume you will have to queue first to enter it. Ok, I'll have a look at it. It should be easy enough to make a function for it. I'll just post it in the userfunctions section when it's done. EDIT: Ok...