PlayerStartedUsing
Skip to content
mnscript
PlayerStartedUsing(Player) 

Description ​

Invoked when a player starts using the terminal

Arguments ​

Player - The Player who started using the terminal

Example ​

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

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

Event.AddListener("PlayerStartedUsing", "using", "OnPlayerStartedUsing");