I'm having the same problem. IBControl will always give my commands in /s, in my case, since I'm in "chat to all".
Chaos Helper properly uses /f.
Is there something we're missing in configuring? I've changed the first part of the meta as Wazoot had said to /ch setchatcommand /f
Fixing this will help eliminate a lot of extraneous chat in group quests too, since everyone else seems to use /s as well because they can't get /f to work in the IBControl window.
IBControl Unlimited
- Immortalbob
- Site Admin
- Posts: 677
- Contact:
its in the ibcontrol settingsJoeblow8579 wrote: ↑June 13th, 2022, 11:13 am I'm having the same problem. IBControl will always give my commands in /s, in my case, since I'm in "chat to all".
Chaos Helper properly uses /f.
Is there something we're missing in configuring? I've changed the first part of the meta as Wazoot had said to /ch setchatcommand /f
Fixing this will help eliminate a lot of extraneous chat in group quests too, since everyone else seems to use /s as well because they can't get /f to work in the IBControl window.
Immortalbob of MT
-
- Posts: 69
Can you elaborate as to where? I have a /ch setchatcommand /f in the IBControl meta itself in the second line. That used to be /s but changing it doesn't seem to alter how the IBControl mini remote behaves.Immortalbob wrote: ↑June 15th, 2022, 8:02 amits in the ibcontrol settingsJoeblow8579 wrote: ↑June 13th, 2022, 11:13 am I'm having the same problem. IBControl will always give my commands in /s, in my case, since I'm in "chat to all".
Chaos Helper properly uses /f.
Is there something we're missing in configuring? I've changed the first part of the meta as Wazoot had said to /ch setchatcommand /f
Fixing this will help eliminate a lot of extraneous chat in group quests too, since everyone else seems to use /s as well because they can't get /f to work in the IBControl window.
- Immortalbob
- Site Admin
- Posts: 677
- Contact:
ok, so...thats an issue stemming from the version pappy forked....you can edit the miniremote stuff in the meta, idr where it is.
Immortalbob of MT
Hey there I found the issue with IBC Unlimited not saying messages in fellow. In the Unlimited_IBControl.met file, there is a line:
Which needs to be replaced with
The problem is, you can't modify the file directly with notepad (it gets corrupted). You have to:
Anyways, hopefully this will help someone down the road.
Code: Select all
CreateView {Remote} {<?xml version="1.0"?><view width="168" height="217" title="IBC Remote"><control type="layout"><control type="button" name="All On" left="6" top="6" width="75" height="15" text="All On" setstate="Default2" actionexpr="chatbox[\#action all on]" /><control type="button" name="All Off" left="87" top="6" width="75" height="15" text="All Off" setstate="Default2" actionexpr="chatbox[\#action all off]" /><control type="button" name="Follow" left="6" top="27" width="75" height="15" text="Follow" setstate="Default2" actionexpr="chatbox[\#action follow]" /><control type="button" name="Stay" left="87" top="27" width="75" height="15" text="Stay" setstate="Default2" actionexpr="chatbox[\#action stay]" /><control type="button" name="Nav Only" left="87" top="48" width="75" height="15" text="Nav Only" setstate="Default2" actionexpr="chatbox[\#action nav only]" /><control type="button" name="Forcebuff" left="6" top="48" width="75" height="15" text="Forcebuff" setstate="Default2" actionexpr="chatbox[\#action buff]" /><control type="button" name="Combat On" left="6" top="69" width="75" height="15" text="Combat On" setstate="Default2" actionexpr="chatbox[\#optset enablecombat true]" /><control type="button" name="Combat Off" left="87" top="69" width="75" height="15" text="Combat Off" setstate="Default2" actionexpr="chatbox[\#optset enablecombat false]" /><control type="button" name="Nav Off" left="87" top="90" width="75" height="15" text="Nav Off" setstate="Default2" actionexpr="chatbox[\#optset enablenav false]" /><control type="button" name="Nav On" left="6" top="90" width="75" height="15" text="Nav On" setstate="Default2" actionexpr="chatbox[\#optset enablenav true]" /><control type="button" name="Rares Only" left="87" top="111" width="75" height="15" text="Rares Only" setstate="Default2" actionexpr="chatbox[\#action rares only]" /><control type="button" name="Loot All" left="6" top="111" width="75" height="15" text="Loot All" setstate="Default2" actionexpr="chatbox[\#action loot all]" /><control type="button" name="Buff On" left="6" top="132" width="75" height="15" text="Buff On" setstate="Default2" actionexpr="chatbox[\#optset enablebuffing true]" /><control type="button" name="Buff Off" left="87" top="132" width="75" height="15" text="Buff Off" setstate="Default2" actionexpr="chatbox[\#optset enablebuffing false]" /><control type="button" name="Portal" left="6" top="174" width="75" height="15" text="Portal" setstate="Default2" actionexpr="chatbox[\#action ucp]" /><control type="button" name="NPC" left="87" top="174" width="75" height="15" text="NPC" setstate="Default2" actionexpr="chatbox[\#action npc]" /><control type="button" name="Vendor" left="6" top="195" width="75" height="15" text="Vendor" setstate="Default2" actionexpr="chatbox[\#action ucv]" /></control></view>}
Code: Select all
CreateView {Remote} {<?xml version="1.0"?><view width="168" height="217" title="IBC Remote"><control type="layout"><control type="button" name="All On" left="6" top="6" width="75" height="15" text="All On" setstate="Default2" actionexpr="chatbox[\/f \#action all on]" /><control type="button" name="All Off" left="87" top="6" width="75" height="15" text="All Off" setstate="Default2" actionexpr="chatbox[\/f \#action all off]" /><control type="button" name="Follow" left="6" top="27" width="75" height="15" text="Follow" setstate="Default2" actionexpr="chatbox[\/f \#action follow]" /><control type="button" name="Stay" left="87" top="27" width="75" height="15" text="Stay" setstate="Default2" actionexpr="chatbox[\/f \#action stay]" /><control type="button" name="Nav Only" left="87" top="48" width="75" height="15" text="Nav Only" setstate="Default2" actionexpr="chatbox[\/f \#action nav only]" /><control type="button" name="Forcebuff" left="6" top="48" width="75" height="15" text="Forcebuff" setstate="Default2" actionexpr="chatbox[\/f \#action buff]" /><control type="button" name="Combat On" left="6" top="69" width="75" height="15" text="Combat On" setstate="Default2" actionexpr="chatbox[\/f \#optset enablecombat true]" /><control type="button" name="Combat Off" left="87" top="69" width="75" height="15" text="Combat Off" setstate="Default2" actionexpr="chatbox[\/f \#optset enablecombat false]" /><control type="button" name="Nav Off" left="87" top="90" width="75" height="15" text="Nav Off" setstate="Default2" actionexpr="chatbox[\/f \#optset enablenav false]" /><control type="button" name="Nav On" left="6" top="90" width="75" height="15" text="Nav On" setstate="Default2" actionexpr="chatbox[\/f \#optset enablenav true]" /><control type="button" name="Rares Only" left="87" top="111" width="75" height="15" text="Rares Only" setstate="Default2" actionexpr="chatbox[\/f \#action rares only]" /><control type="button" name="Loot All" left="6" top="111" width="75" height="15" text="Loot All" setstate="Default2" actionexpr="chatbox[\/f \#action loot all]" /><control type="button" name="Buff On" left="6" top="132" width="75" height="15" text="Buff On" setstate="Default2" actionexpr="chatbox[\/f \#optset enablebuffing true]" /><control type="button" name="Buff Off" left="87" top="132" width="75" height="15" text="Buff Off" setstate="Default2" actionexpr="chatbox[\/f \#optset enablebuffing false]" /><control type="button" name="Portal" left="6" top="174" width="75" height="15" text="Portal" setstate="Default2" actionexpr="chatbox[\/f \#action ucp]" /><control type="button" name="NPC" left="87" top="174" width="75" height="15" text="NPC" setstate="Default2" actionexpr="chatbox[\/f \#action npc]" /><control type="button" name="Vendor" left="6" top="195" width="75" height="15" text="Vendor" setstate="Default2" actionexpr="chatbox[\/f \#action ucv]" /></control></view>}
- use https://github.com/JJEII/metaf (which is sort of complex) to change the meta file to a temporary file that can be edited in Notepad.
- Make the code changes above
- use the metaf tool above to transform that temp file back into a .met file
Anyways, hopefully this will help someone down the road.
I appreciate the help. Followed your steps but it still end up being corrupted. I just deal with it
. I may figure it out one day

How do I customize the navigation options as i wish to alter the tou tou kill quests as i LS there?
-
- Posts: 1
Hi. I am getting this error, [VTank] Error in meta expression action: setvar[charlist,listcreate[]] (Call to unknown function "listcreate": "setvar[charlist,listcreate[]]"). My characters seem to load the meta, all get that error; and when I give a command, the other members do nothing. I have installed everything correctly I think. Any idea? Thanks!