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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Paratax

New Member
Joined
Nov 29, 2012
Messages
28
Hello,

I am looking for a way to have a profile that increases itemcount during its duration. Currently I have seen this in several profiles:
Code:
<!DOCTYPE Profile [
	<!ENTITY SomeVariableName "100">
]>
<If Condition="ItemCount(x) &lt; &SomeVariableName ">
 "do something"
</If>

What I am looking for is a way to increase "SomeVariableName" lets say by 100 again. Or to have something else that would increase the count during its runtime.

Something like
Code:
declare SomeVariableName 100 
<If Condition="ItemCount(x) &lt; &SomeVariableName ">
 "do something"
 SomeVariableName = SomeVariableName + 100
</If>

I have no idea how to express it in the language the bot is using.
 
Back
Top