Page 2 of 6
Re: DoD First Boss spam solo and party
Posted: Tue Aug 28, 2012 12:57 am
by kuripot
in database skill wrote as
Code: Select all
<skill name="MAGE_ELEMENTAL_CATALYST" id="490238" cooldown="300" type="buff" target="self" />
but in my waypoint i use
Code: Select all
player:cast("MAGE_ELEMENTAL_CATALYSIS");
so when he try to cast player:cast("MAGE_ELEMENTAL_CATALYSIS"); it will cause an error because in database skill is "MAGE_ELEMENTAL_CATALYST" about intensification... already in bossbuff function so it will cast it
Code: Select all
player:cast("MAGE_ESSENCE_OF_MAGIC");
player:cast("PRIEST_MAGIC_BARRIER");
player:cast("MAGE_ENERGY_INFLUX");
player:cast("MAGE_ELECTROSTATIC_CHARGE");
player:cast("MAGE_INTENSIFICATION");
player:cast("MAGE_ELEMENTAL_CATALYSIS");
player:cast("PRIEST_REGENERATE");
end
Re: DoD First Boss spam solo and party
Posted: Tue Aug 28, 2012 6:32 am
by harbifm
greet its working now
got to ask? in the way point you say merchant not working? I am not sure is it working or not with me,but, what that mean is that when it is full it does not go to the near by Codex meachats and sell drops but it should go to Jake wallanda which is not NPC in my english sitting in my server

?!! i want it to target the mechant near (I am not sure is it the ID mearchant is the one near by) sell clear bag 121-180, and the codex mechants are near by
where i can edit that?
Re: DoD First Boss spam solo and party
Posted: Tue Aug 28, 2012 6:57 pm
by kuripot
did you edit the bagslot
Code: Select all
loadProfile("Main") <!-- I use designated profile for dod -->
setwindow(206879)
changeProfileOption("INV_AUTOSELL_FROMSLOT", 1)
changeProfileOption("INV_AUTOSELL_TOSLOT", 30)
changeProfileOption("EGGPET_ENABLE_ASSIST", "true")
changeProfileOption("INV_AUTOSELL_ENABLE", "true")
changeProfileOption("AUTO_ELITE_FACTOR", 1000)
settings.profile.friends = {"Incomplete Bloody Beast"}
did you edit
Code: Select all
changeProfileOption("INV_AUTOSELL_FROMSLOT", 1)
changeProfileOption("INV_AUTOSELL_TOSLOT", 30)
im not sure if you need to edit this...
Code: Select all
function CleanBagDOD()
for i, item in pairs(inventory.BagSlot) do
if item.SlotNumber >= settings.profile.options.INV_AUTOSELL_FROMSLOT + 60 and
settings.profile.options.INV_AUTOSELL_TOSLOT + 60 >= item.SlotNumber then
if item:isType("Materials") then
item:delete()
end
if item:isType("Arrows") then
item:delete()
end
if item:isType("Projectiles") then
item:delete()
end
if ( item:isType("Weapons") or item:isType("Armor") ) and (1000 > item.Worth and 5 > item.Quality)then
item:delete()
end
if item:isType("Equipment Enhancement") then
item:delete()
end
if item.Name == "Wild Boar Meat" then
item:delete()
end
if item:isType("Potions") then
item:delete()
end
end
end
end
ask rock about this...
Re: DoD First Boss spam solo and party
Posted: Wed Aug 29, 2012 1:15 am
by harbifm
yes i did because i do not want to clean the stuff. it deleted some good itmes the clean bag thing (some hero stats) . so I am not sure why you have clean bag for but I do not want it either.
all i want is to target near by merchans when bags are full (for me i only want to empty bags 121-180)
so I do not want 1-60 bags cleaned/sold to merchant!
I think I can work it form here. thanks
Re: DoD First Boss spam solo and party
Posted: Wed Aug 29, 2012 10:59 pm
by kuripot
i only delete stuff with below 1000 worth of gold, ammunition, runes, etc
Re: DoD First Boss spam solo and party
Posted: Thu Aug 30, 2012 3:30 am
by harbifm
kuripot wrote:i only delete stuff with below 1000 worth of gold, ammunition, runes, etc
no bigyy...if there is a merchant point @@
beside, it deleted mana stones for me

Re: DoD First Boss spam solo and party
Posted: Thu Aug 30, 2012 5:43 am
by grande
Please disregard below.. turns out the issue was with ME adjusting the original Leader WP file. I had added an extra "okander" party message and I think that was gumming up the works... errr messing up the execution. My bad
Runs okay for about 3 runs but then one of the characters will start having a mind of it's own and claiming the "party is ready!" even before the party has finished reassemebling with ILG or it just runs ahead of the group and since it's a lesser character... dies. It's always a problem with the 2nd or 3rd character and randomly switches between the two. I've tried adjusting various wait times but so far it inevitably fails and falsely shows the "party is ready!"
I assume the problem is something to do with this part?
Code: Select all
function waitForLeader()
yrest(1800)
keyboardPress(settings.hotkeys.JUMP.key)
while true do
cprintf(cli.lightred,"Waiting for leader...\n")
local time, moreToCome, _name, _message = EventMonitorCheck("DoD","4,1",true)
if _message then
string.lower(_message)
end
if _message and (_message == "enter" or _message == "ready" or _message == "okander") then
break
else
yrest(2000)
end
player:update()
end
cprintf(cli.lightgreen,"Party is ready!\n")
end
You can see I already adjusted the first yrest from 200 to 1800 hoping that would settle things down but that hasn't helped. What is the "4,1" part in the event monitory? Maybe there is some other better event to monitor for?
Thanks for any help
Re: DoD First Boss spam solo and party
Posted: Thu Aug 30, 2012 1:49 pm
by brujilla
Hello!
And thx for this post. I have a problem, i use this waipoint and when i cross the portal micromacro wrong said:
-[string "..."]:6:attempt to call global ´GoThroughPortal´<a nil value>
Please what happend?
thx
Re: DoD First Boss spam solo and party
Posted: Thu Aug 30, 2012 2:15 pm
by rock5
brujilla wrote:Hello!
And thx for this post. I have a problem, i use this waipoint and when i cross the portal micromacro wrong said:
-[string "..."]:6:attempt to call global ´GoThroughPortal´<a nil value>
Please what happend?
thx
GoThroughPortal is a function from the 'GoToPortal' userfunction.
http://www.solarstrike.net/phpBB3/viewt ... 916#p37916
Download it and put it in the 'rom/userfunctions' folder.
Re: DoD First Boss spam solo and party
Posted: Thu Aug 30, 2012 2:25 pm
by brujilla
oohh thxxxx very much.
kss
Re: DoD First Boss spam solo and party
Posted: Thu Aug 30, 2012 5:14 pm
by brujilla
Sorry the new i cant find EventMonitorCheck to dod follower, where i load?
Re: DoD First Boss spam solo and party
Posted: Fri Sep 14, 2012 10:16 pm
by vo2male
Hallowach wrote:I have the problem, that i cannot go trough the portal as leader. if i start the program, everytime there comes this error:
[string "..."]:5: attempt to call global ´sendPartyChat´ ( a nil value)
can you help me please
Hi guys! Me too, i'm having this problem on the Leader waypoint...
i already put these files on my rom/userfunctions folder
Code: Select all
userfunction_partymonitoring.lua
userfunction_partycheck.lua
but still it didn't solve the problem? is there anything else i should add to my leader profile such as onload or anything?
Re: DoD First Boss spam solo and party
Posted: Sun Sep 16, 2012 5:54 am
by vo2male
This is the exact error message i'm having
Code: Select all
You chose 47
Loaded waypoint path DoD_Leader.xml
No return path with default naming DoD_Leader_return.xml found.
We use the normal waypoint path DoD_Leader.xml now.
GM detection started
We changed the option 'AUTO_ELITE_FACTOR' from '5' to '1000'.
We changed the option 'LOOT_IN_COMBAT' from 'true' to 'false'.
Moving to waypoint #1, (1645, -4908)
Use MACRO: ROGUE_INFORMER => <UNKNOWN> (1000/1000)
Clearing target.
Moving to waypoint #2, (1662, -4970)
Moving to waypoint #3, (1660, -5072)
Moving to waypoint #4, (1667, -5124)
Party is ready!
Forced waypoint type 'RUN' set by user.
ILG destroy
ILG inv
Did not find any crashed game clients.
1:47pm - [string "..."]:5: attempt to call global 'sendPartyChat' (a nil value)
Please enter the script name to run.
Type in 'exit' (without quotes) to exit.
Script>
i hope someone could enlighten me here more. i already added the userfunction_partycheck.lua and the userfunction_partmonitoring.lua
Re: DoD First Boss spam solo and party
Posted: Sun Sep 16, 2012 6:06 am
by lisa
they are part of the current bot in classes/party.lua
function sendPartyChat(_msg)
function checkEventParty()
function checkparty(_dist)
what version of client and bot are you using ?
Re: DoD First Boss spam solo and party
Posted: Sun Sep 16, 2012 6:18 am
by vo2male
lisa wrote:they are part of the current bot in classes/party.lua
function sendPartyChat(_msg)
function checkparty(_dist)
does this mean i have to edit/add something in the party.lua?
lisa wrote:what version of client and bot are you using ?
Client version 5.0.0.2559
Bot Version 3.29, Revision 737
I just tested my eventmonitortest and here is the result
Code: Select all
Loaded waypoint path eventmonitortest.xml
No return path with default naming eventmonitortest_return.xml found.
We use the normal waypoint path eventmonitortest.xml now.
GM detection started
Use MACRO: Executing RoMScript "SendChatMessage('LOL','SAY');".
Event monitoring works fine.
Go to sleep at 09/16/12 14:24:09. Press Delete to wake up.
Re: DoD First Boss spam solo and party
Posted: Sun Sep 16, 2012 6:25 am
by lisa
I added those functions back in 733, so if you have 737 then you should already have them, maybe try
right clicking party.lua
SVN
revert.
and see if that helps.
yeah this
1:47pm - [string "..."]:5: attempt to call global 'sendPartyChat' (a nil value)
says you don't have the function at all.
Re: DoD First Boss spam solo and party
Posted: Sun Sep 16, 2012 6:28 am
by vo2male
lisa wrote:I added those functions back in 733, so if you have 737 then you should already have them, maybe try
right clicking party.lua
SVN
revert.
and see if that helps.
yeah this
1:47pm - [string "..."]:5: attempt to call global 'sendPartyChat' (a nil value)
says you don't have the function at all.
there was no revert button when i right clicked it so i just tried to revision it to 733.ill check it out
UPDATE:
works fine after all ^_^ thanks lisa.. now ill just have to delete some of the scripts and deal with this
Code: Select all
Did not find any crashed game clients.
2:30pm - [string "..."]:30: attempt to call global 'useGoodie' (a nil value)
as i dont have goodies atm on my bag @_@
Re: DoD First Boss spam solo and party
Posted: Sun Sep 16, 2012 6:41 am
by lisa
that is again saying you don't have a function, you can find that function here.
http://www.solarstrike.net/phpBB3/viewt ... =usegoodie
Re: DoD First Boss spam solo and party
Posted: Sun Sep 16, 2012 7:08 am
by vo2male
WoW!

thanks for the additional info Lisa

Re: DoD First Boss spam solo and party
Posted: Sun Sep 16, 2012 3:42 pm
by Supergala
and also what will be the command rom / bot?