WOS_RemoveSkillTree

Player:WOS_RemoveSkillTree( string Tree )

Description

Removes a skill tree whitelist to the player. Look at Player:WOS_RemoveSkillTree also.

Arguments

1 string Tree
The skill tree to remove.

Example

Removes the skill tree "Ravenger" at a 50/50 chance when they spawn.

hook.Add("PlayerInitialSpawn", "wOS.ALCS.Whitelist.RemoveRavenger", function(ply)	local chance = math.random(1,2)	if chance == 1 then		ply:WOS_RemoveSkillTree("Ravenger")	endend)
Output: Removes skill tree "Ravenger" with a 50/50 chance on players first spawn.
wikOS powered By wiltOS Technologies