fuckThere is huge problem with waiting time after taking teleport from town :/ Razorclaw lowering me to 50% while this "WaitTime", but it's not in profile, and i didn't even found it in Trinity code :/
There is tricky option in Trinity Advanced:fuck![]()
Set(new TVar("XmlTag.TrinityTownPortal.DefaultWaitTime", 2500, "Time in Milliseconds to set the default wait time for TrinityTownPortal (may be overriden by Profile tags)"));
Set(new TVar("XmlTag.TrinityTownPortal.ForceWaitTime", -1, "If not -1, Force set the Time in Milliseconds to clear the area for TrinityTownPortal"));
There is tricky option in Trinity Advanced:
Code:Set(new TVar("XmlTag.TrinityTownPortal.DefaultWaitTime", 2500, "Time in Milliseconds to set the default wait time for TrinityTownPortal (may be overriden by Profile tags)")); Set(new TVar("XmlTag.TrinityTownPortal.ForceWaitTime", -1, "If not -1, Force set the Time in Milliseconds to clear the area for TrinityTownPortal"));
Can't really understand what is this wait timer for
Solution for all
prebuffs in town
just add line with skill you wanna to use in the profile
after the Order word i think
for example
<UsePower questId="1" snoPower="Barbarian_Warcry" />
Ok got it, timer i wrote before it's for Porting out, not for porting in. For TakingInPortal i found no timers atm, can't really understand the delay, may be rrrix can help?dont know, rrrix told its crash prevention, and he dont tell me how to delete this timer
i cant seem to make the wizard buff before going into the portal, i added the following codes like so:
<Profile>
<Name>[BigClaw v0.1] RazorClaw</Name>
<GameParams quest="113910" step="56" act="A4" resumeFromSave="True" isPrivate="True" numGames="-1" />
<KillMonsters>True</KillMonsters>
<PickupLoot>True</PickupLoot>
<Order>
<TrinityMaxDeaths questId="54" max="1" />
<UsePower questId="1" snoPower="Wizard_Familiar" />
<UsePower questId="1" snoPower="Wizard_Energyarmor" />
<UsePower questId="1" snoPower="Wizard_Magicweapon" />
<If condition="CurrentLevelAreaId == 197101">
<ToggleTargeting questId="1" combat="True" looting="True" lootRadius="50" killRadius="20" />
<LogMessage questId="113910" stepId="56" output="Using portal to Razorclaw" />
<TakeTownPortal questId="113910" stepId="56" />
</If>
<If condition="CurrentLevelAreaId == 109516">
<!--WaitTimer questId="113910" stepId="54" waitTime="5000" /-->
<TrinityTownPortal questId="113910" stepId="54"/>
</If>
<LeaveGame reason="The END" stayInParty="False" />
</Order>
</Profile>
however i don't know if i am doing it right
edit: ACTUALLY i know what im doing is wrong because every time i start the bot, it starts in town, i see the beginning of a cast animation of self buffing and then i get an error and kicked out of the game........
guys, new info from hidden source
[20:34:22] xxx: add short waittimer while in town
[20:34:31] xxx: doing it like that is same as having too high TPS
[20:34:41] xxx: each UsePower must be delayed minimum 50ms
[20:34:45] xxx: better is 250ms
guys, new info from hidden source
[20:34:22] xxx: add short waittimer while in town
[20:34:31] xxx: doing it like that is same as having too high TPS
[20:34:41] xxx: each UsePower must be delayed minimum 50ms
[20:34:45] xxx: better is 250ms
<UsePower questId="1" snoPower="Wizard_Familiar" />
<WaitTimer questId="1" waitTime="250" />
<UsePower questId="1" snoPower="Wizard_Energyarmor" />
<WaitTimer questId="1" waitTime="250" />
<UsePower questId="1" snoPower="Wizard_Magicweapon" />
<WaitTimer questId="1" waitTime="250" />
guys, new info from hidden source
[20:34:22] xxx: add short waittimer while in town
[20:34:31] xxx: doing it like that is same as having too high TPS
[20:34:41] xxx: each UsePower must be delayed minimum 50ms
[20:34:45] xxx: better is 250ms
It's not hidden, it's me
Code:<UsePower questId="1" snoPower="Wizard_Familiar" /> <WaitTimer questId="1" waitTime="250" /> <UsePower questId="1" snoPower="Wizard_Energyarmor" /> <WaitTimer questId="1" waitTime="250" /> <UsePower questId="1" snoPower="Wizard_Magicweapon" /> <WaitTimer questId="1" waitTime="250" />
ok, it's untested, probably have the SNOPower's wrong - they're case sensitive. It's an internal DB tag so who knows.
The next Trinity version should do what you need, though.
Your proposal doesn't work, I'm afraid. Ah well
When is the new Trinity out and is there anything we can do about the time it takes from entering the portal to actually doing something? By removing that timer you could probably up the speed by 15-20 games / hour
The delay after using the portal is for crash prevention. This one profile is a bit of a corner case in terms of how it works.
I personally feel it's better to make the bot work with *all* profiles, and have as few crashes as possible, versus making it work perfectly specifically for this one profile![]()