• Hail Guest!
    We're looking for Community Content Contribuitors to Stratics. If you would like to write articles, fan fiction, do guild or shard event recaps, it's simple. Find out how in this thread: Community Contributions
  • Greetings Guest, Having Login Issues? Check this thread!
  • Hail Guest!,
    Please take a moment to read this post reminding you all of the importance of Account Security.
  • Hail Guest!
    Please read the new announcement concerning the upcoming addition to Stratics. You can find the announcement Here!

Communication Script Shorthand

LowdownandShifty

Journeyman
Stratics Veteran
Does anyone have a quicker way to send a message to /self (or the other chat options) instead of saying it overhead? I'm writing a script to cycle through my Organizers. Here's what I have so far:
Code:
script Organizer.ActiveOrganizer = (Organizer.ActiveOrganizer +1)%Organizer.Organizers+1
script CustomSettings.SaveWString("myOrg", L"Organizer="..Organizer.Organizers_Desc[Organizer.ActiveOrganizer])
script SendChat( ChatSettings.Channels[ SystemData.ChatLogFilters.SAY ], CustomSettings.LoadWString("myOrg") )
Right now, it works. However, I don't want to broadcast all this to the world each time I run the script.

*edit: fixed a typo in the code.
 
Last edited:

Pinco

UOEC Modder
Stratics Veteran
Stratics Legend
Does anyone have a quicker way to send a message to /self (or the other chat options) instead of saying it overhead? I'm writing a script to cycle through my Organizers. Here's what I have so far:
Code:
script Organizer.ActiveOrganizer = (Organizer.ActiveOrganizer +1)%Organizer.Organizers+1
script CustomSettings.SaveWString("myOrg", L"Organizer="..Organizer.Organizers_Desc[Organizer.ActiveOrganizer])
script SendChat( ChatSettings.Channels[ SystemData.ChatLogFilters.SAY ], CustomSettings.LoadWString("myOrg") )
Right now, it works. However, I don't want to broadcast all this to the world each time I run the script.

*edit: fixed a typo in the code.
the overhead shows the messages ONLY to you (even if it's overhead)...

however the self channel is something I've added so I don't think there is a quick way to do that :D
 
Top