$arrayFilter

To filter an array depend on a value of CODE, if false then remove that element from the array
Note: Only zero-cooldown functions allowed in CODE

Usage

$arrayFilter[Element Value;Element Index;array name]{
CODE...
}

Example (Remove Hello):

Member05/26/2023
!!exec $textSplit[Hello/World;/]
$arrayFilter[value]{
$if[$value==Hello]{
false
}
}
$arrayJoin[/]

Custom Command Bot 05/26/2023
World