PvPteam (script)

From Elanthipedia
Revision as of 17:48, 18 October 2019 by MOTHRA (talk | contribs)
Jump to navigation Jump to search
PvPteam (script)
Category Combat,Utility
Front-end StormFront
Author User:Mothra


Usage

This script deletes any existing highlight settings for character names you list within the script. Before running this script it is highly recommended that you click the OPTIONS tab in the top right corner of the StormFront window, select SETTINGS, click EXPORT, check NAME HIGHLIGHTS and click EXPORT. Make a note of the filename you've exported to if it's anything but the default C:\StormFront.xml file. After you're finished, use the PvPteamdel script to undo your PvPteam highlights and IMPORT your NAME HIGHLIGHTS to reset any highlight strings you may have for the character highlights you changed for your PvP session.

Syntax

  • .PVPTEAM HEX COLOR CODE # NAME NAME NAME (where name=character names you want to highlight)
example: .pvpteam #FF6347 Jim Jack Johnny

Use the PvPteamdel script to undo these changes.

Script

#red #FF6347
#blue #ADD8E6
setVariable color %1
SHIFT
start:
IF_1 goto highlight
EXIT
highlight:
DELETEFROMHIGHLIGHTNAMES string=%1
ADDTOHIGHLIGHTNAMES string=%1 forecolor=%color matchpartialword=false ignorecase=true
SHIFT
GOTO start