$arrayFilter

Iterates through each element in an array. If the code returns false, the element will be removed from the array. Note: Only zero-cooldown functions are allowed in the CODE.

Usage

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

Example (Remove Hello):

Member02/20/2024
!!exec $textSplit[Hello/World;/]
$arrayFilter[value]{
$if[$value==Hello]{
false
}
}
$arrayJoin[/]

Custom Command Bot 02/20/2024
World