What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Help me pls castomize trinity

FEDEZ

Member
Joined
Feb 14, 2016
Messages
121
Reaction score
0
hi, anyone can help me for skyp elite with shield and leave game when Rg spown ( speed no boss) and leave only when voracity and orlash spown. Tnx and sorry for my bad english.
Fedez
 
[edit: posted response to wrong thread :(]

Since i'm here, if you want to do that you would need to:


  • Find the ActorSnoId of the boss you want to avoid. You can get this by using the 'Dump Objects' button in the 'Info Dumping' tab.
  • Add some logic to check for the Id. Maybe.Combat\HandleTarget.cs HandleTarget() ~175
Code:
                    if (CurrentTarget.ActorSNO == 000000)
                    {
                        TrinityPlugin.LeaveGame("I dont like this boss.");
                    }
or if you are on an older version:
Code:
                    if (CurrentTarget.ActorSNO == 000000)
                    {
                        Logger.Log("I don't like this boss);
                        GameEvents.FireWorldTransferStart();
                        ZetaDia.Service.Party.LeaveGame();
                        BotMain.PauseWhile(() => ZetaDia.IsInGame);
                    }
 
Last edited:
[edit: posted response to wrong thread :(]

Since i'm here, if you want to do that you would need to:


  • Find the ActorSnoId of the boss you want to avoid. You can get this by using the 'Dump Objects' button in the 'Info Dumping' tab.
  • Add some logic to check for the Id. Maybe.Combat\HandleTarget.cs HandleTarget() ~175
Code:
                    if (CurrentTarget.ActorSNO == 000000)
                    {
                        TrinityPlugin.LeaveGame("I dont like this boss.");
                    }
or if you are on an older version:
Code:
                    if (CurrentTarget.ActorSNO == 000000)
                    {
                        Logger.Log("I don't like this boss);
                        GameEvents.FireWorldTransferStart();
                        ZetaDia.Service.Party.LeaveGame();
                        BotMain.PauseWhile(() => ZetaDia.IsInGame);
                    }


tnx for quick resp. i try this.
Fedez
 
the actor snold is like this ?? :
354652 // X1_LR_Boss_demonFlyerMega (fist number) ?
 
Back
Top