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

[Help] How to write something in the widget?

darkmaka

New Member
Joined
Jun 13, 2012
Messages
43
Reaction score
0
Hello!

I can't find how to write some text in the widget.

I know how to create a checkbox and how to count item in the inventory but what I want are lines like that:
Number of Seeds:
Mushroom: 30
Azalea: 58
Rice: 20​

If anyone can help me with that.
 
developer cut off many thing from widget so u cant more add custom controls like - radar, targeters etc. enjoy what u got.
 
This will probably not be very efficient, but you can try to create/delete/create checkboxes with changing names. If you will do updates every minute or so, then this may work.

SetGroupStatus("Rice: 20", false)
DelGroupStatus("Rice: 20")
SetGroupStatus("Rice: 10", false)
DelGroupStatus("Rice: 10")

Create a string which you do update for this "Rice: 20".
 
This will probably not be very efficient, but you can try to create/delete/create checkboxes with changing names. If you will do updates every minute or so, then this may work.

SetGroupStatus("Rice: 20", false)
DelGroupStatus("Rice: 20")
SetGroupStatus("Rice: 10", false)
DelGroupStatus("Rice: 10")

Create a string which you do update for this "Rice: 20".
Yes, that's what I do right now but it's buggy and it blinks.
 
Back
Top