Hello!
I have just started using PB to make profiles to do the random boring shit that needs to be done but I am not the best programmer/had very little programming experience.
At the moment I have a while condition that goes like this:
I would like to change that to be less messy and have it something like:
Where var1 is a list of ID's. I have made all my profiles from reading and under standing the other profiles already included with PB but I am not sure how it is meant to be done.
My var1 list is declared this way:
Is this possible or am I just coding this wrong?
Thanks for the help in advanced.
Edit1: Also is there a list of Profession Buddy commands? The help that is already there is pretty in depth but does not display all the possible commands.
I have just started using PB to make profiles to do the random boring shit that needs to be done but I am not the best programmer/had very little programming experience.
At the moment I have a while condition that goes like this:
Code:
While (MailCount > 0 || HasNewMail == true || InbagCount(52983) > 4 || InbagCount(52984) > 4 || InbagCount(52985) > 4 || InbagCount(52986) > 4 || InbagCount(52987) > 4 || InbagCount(52988) > 4)
I would like to change that to be less messy and have it something like:
Code:
MailCount > 0 || HasNewMail == true || InbagCount(var1) > 4
Where var1 is a list of ID's. I have made all my profiles from reading and under standing the other profiles already included with PB but I am not sure how it is meant to be done.
My var1 list is declared this way:
Code:
CustomAction:(var1 = new List<uint>{52983, 52984, 52985, 52986, 52987, 52988};)
Is this possible or am I just coding this wrong?
Thanks for the help in advanced.

Edit1: Also is there a list of Profession Buddy commands? The help that is already there is pretty in depth but does not display all the possible commands.
Last edited: