Bogreaper
Member
- Joined
- Feb 8, 2017
- RedCents
- 113¢
It may already be on here, but I can't find it..
Im looking for an up to date listing of the EQBC TLOs..
According to http://www.redguides.com/docs/projects/mq2eqbc/
Top-Level Objects
${EQBC}
${EQBC.Names} should work, but it returns ".. not even NULL
${EQBC.ToonName} works.
Basicly what I am looking for is kinda line ${Group.Member[x]} or ${Raid.Member[x]} but for the characters connected to my eqbcs
I am needing to send a command to all characters around me that are not in my group or raid but connected to me eqbc. Something like...
/for x 1 to ${EQBC.ToonsConnected}
/if (${SpawnCount[pc radius 100 zradius 100 ${EQBC.Toon[x]}]}>0) /bct ${EQBC.Toon[x]} //macro ${EQBC.Toon[x]}atk ${Me.CleanName} ${Target.ID}
/delay 1
/next x
This right here works great.
/for dateam 1 to ${Group.Members}
/if (${SpawnCount[pc radius 100 ${Group.Member[${dateam}]}]} && ${Me.CleanName.NotEqual[${Group.Member[${dateam}]}]} && ${Target.Type.Equal[NPC]}) /bct ${Group.Member[${dateam}]} //macro ${Group.Member[${dateam}]}atk ${Me.CleanName} ${Target.ID}
/if (${Target.ID}<1) /varset dateam ${Group.Members}
/delay 1
/next dateam
But I want to be able to do it for the characters attached to my eqbc server but not grouped with me, just in case something happens and I need them to attack.
thanks.
BogReaper
Im looking for an up to date listing of the EQBC TLOs..
According to http://www.redguides.com/docs/projects/mq2eqbc/
Top-Level Objects
${EQBC}
| Type | Member Name | Description |
| bool | Connected | Client connection status |
| string | Names | List of connected characters |
| string | Port | OFFLINE if not connected, port if connected |
| string | Server | hostname or IP of server you connected to |
| string | ToonName | Character name as seen by EQBC (may reflect YouPlayer) |
| bool | Setting[option] | Option enabled/disabled status. (see /bccmd set for complete list) |
${EQBC.Names} should work, but it returns ".. not even NULL
${EQBC.ToonName} works.
Basicly what I am looking for is kinda line ${Group.Member[x]} or ${Raid.Member[x]} but for the characters connected to my eqbcs
I am needing to send a command to all characters around me that are not in my group or raid but connected to me eqbc. Something like...
/for x 1 to ${EQBC.ToonsConnected}
/if (${SpawnCount[pc radius 100 zradius 100 ${EQBC.Toon[x]}]}>0) /bct ${EQBC.Toon[x]} //macro ${EQBC.Toon[x]}atk ${Me.CleanName} ${Target.ID}
/delay 1
/next x
This right here works great.
/for dateam 1 to ${Group.Members}
/if (${SpawnCount[pc radius 100 ${Group.Member[${dateam}]}]} && ${Me.CleanName.NotEqual[${Group.Member[${dateam}]}]} && ${Target.Type.Equal[NPC]}) /bct ${Group.Member[${dateam}]} //macro ${Group.Member[${dateam}]}atk ${Me.CleanName} ${Target.ID}
/if (${Target.ID}<1) /varset dateam ${Group.Members}
/delay 1
/next dateam
But I want to be able to do it for the characters attached to my eqbc server but not grouped with me, just in case something happens and I need them to attack.
thanks.
BogReaper

