Skip to content

Edge Methods

GodDragoner edited this page Apr 9, 2018 · 1 revision

startEdge()

Lets the system know that the sub is going to edge and automatically adds a response that will trigger if the sub is on the edge and will set edging to false and on the edge to true.

Alias: startEdging

Example:

startStroking(250);
sendMessage("Edge!");
startEdge();

endEdge()

Lets the system know that the sub is stopping to edge.

Alias: stopEdge, endEdging, stopEdging

Example:

sendMessage("Let go!");
endEdge();

isEdging()

Returns whether the sub is edging right now. NOT on the edge though!

Example:

if(isEdging()) {
   addStrokingBPM(30);
   sendMessage("Speed up");
}

isOnEdge()

Returns whether the sub is on the edge right now.

Alias: onEdge, isEdge

Example:

if(isOnEdge()) {
   stopStroking();
   endEdge();
   sendMessage("Hands off!");
}

Clone this wiki locally