_setDescription

Sets the description of a chosen Skill.

Parameters

id

The ID of the Skill you wish to modify.

description

The new description which will go under the chosen Skill.

Example

FM_api('Skill_setDescription',[
		'id'=>'12345',
		'description'=>'This is a test
description.'
	]
);

Results

On Success

On Failure

If the "id" parameter is not set or has an integer value less than 1:

If the "description" parameter is not set or is empty:

Last updated