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

Auto Roll Dice (something changed in the last glyph update?) "OUT PLZ HELP"

loukaseco

New Member
Joined
Oct 1, 2014
Messages
14
Reaction score
0
From the last glyph update yesterday the auto-roll dice when i am in party doesn't work.
Can someone help me and post a function that auto pick up and auto roll dice for all items?
Thanx in advance!!
 
Here is what I do (and it still works).

Code:
private void processLootDice(Item thisItem) {
    thisItem.Dice(true);
}

public void PluginRun() {
    BlockClientDice(true);
    onLootDice += processLootDice;
}
public void PluginStop() {
    BlockClientDice(false);
}

user
 
Can someone confirm, that Dice method not work on NA\EU servers at this moment?
 
here is a script that will handle dice rolls.

Code:
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Threading;
using System.Collections.Generic;
using System.Linq;
using ArcheBuddy.Bot.Classes;

namespace DefaultNameSpace {
    public class DefaultClass : Core {
        public static string GetPluginAuthor() {return "user01";}
        public static string GetPluginVersion() {return "1.0.0.0";}
        public static string GetPluginDescription() {return "";}
        
        private void processLootDice(Item thisItem) {
            thisItem.Dice(true);
        }
        public void PluginRun() {
            BlockClientDice(true);
            onLootDice += processLootDice;
            
            while (true) {
                Thread.Sleep(100);
                Application.DoEvents();
            }
        }
        public void PluginStop() {
            BlockClientDice(false);
        }
    }
}
 
Back
Top