PlayerStoppedUsing
Skip to content
mnscript
PlayerStoppedUsing(Player) 

Description ​

Invoked when a player stops using the terminal

Arguments ​

Player - The Player who stopped using the terminal

Example ​

msc
using System;
using Player;
using Event;
using Console;

function OnPlayerStoppedUsing(Player ply){
    Console.WriteLine(ply.GetName().." has stopped using the terminal.");
}

Event.AddListener("PlayerStoppedUsing", "using", "OnPlayerStoppedUsing");