Author Topic: backpack item count  (Read 2281 times)

0 Members and 1 Guest are viewing this topic.

Offline jcwTopic starter

  • Jr. Member
  • **
  • Posts: 14
  • Activity:
    0%
  • Reputation Power: 1
  • jcw has no influence.
  • Respect: +1
  • Referrals: 0
    • View Profile
backpack item count
« on: August 22, 2014, 08:57:28 PM »
0
I was trying to make my script pause when my bag fills up. What I came up with is

Code: [Select]
set #strres 0
while #strres < 3
{
   event property #BACKPACKID
   str count #property $
}
   if 125/125 in #property
   {
      pause
   }

Tried looking to see if there was a easier way of doing this but this is all I can seem to come up with. Was just wondering if there is another way of doing it with out using event property?

Offline dxrom

  • Master of the milestones!
  • Elite
  • *
  • *
  • Posts: 1080
  • Activity:
    0%
  • Reputation Power: 15
  • dxrom is working their way up.dxrom is working their way up.dxrom is working their way up.
  • KEYBOARD COWBOY, GREAT SAMURAI OF THE INTERNET.
  • Respect: +100
  • Referrals: 1
    • View Profile
Re: backpack item count
« Reply #1 on: August 23, 2014, 02:09:57 AM »
0
Two ways to potentially do this.
#1: Count every single item in your backpack.
#2: Pull the string value of your backpack cliloc (Items part) when moused over. ie: Backpack, Weight: 230 Stones, Contents: 101/125 Items, 227/550 Stones



 ​_██​_
(ಠ​_ృ)
I do say, ol' Chap! Come play EVE Online! Why here is a 21 Day Free Trial!

Offline jcwTopic starter

  • Jr. Member
  • **
  • Posts: 14
  • Activity:
    0%
  • Reputation Power: 1
  • jcw has no influence.
  • Respect: +1
  • Referrals: 0
    • View Profile
Re: backpack item count
« Reply #2 on: August 23, 2014, 09:03:42 AM »
0
That is what I was guessing. I was just hoping because it was the backpack would have been a shorter/better way of pulling the info.

Tags: