Org.GetDescription
Skip to content
mnscript
string Org.GetDescription() 

Description ​

Gets the org description

Returns ​

string - The org description

Example ​

msc
using Org;
using Console;
using Player;
using System;

// Finds the org of the player using the computer and shows the description.

Player user = System.GetUser();
Org org = Org.GetOrg(user);

if(org.IsValid()){
    // The org is valid, which means it exists.

    string desc = org.GetDescription();
    Console.WriteLine("The org description is: "..desc);
}