RequestClassAbs

From NPC for VCMP 0.4 Servers
Jump to navigation Jump to search

This function was added in v1.8 beta and will not work on previous versions.


Description:
Request a class by specifying its absolute class ID (0,1,2,3,4,..) rather than choosing it relatively (-1,0,1) through RequestClass. This function must be called when npc is not spawned. Calling it when npc is spawned has no effect.


Parameters:

(classId)

classId : The ID of the class to select. Values must be non-negative and not more than 49


Return Values:
true, on success and false, on failure (classId out of range)


Example

function OnPlayerDeath(playerid)
{
	if(playerid==GetMyID())
        RequestClassAbs(3);
}

Related Functions

The following functions may be helpful as they relate to this function in one way or another.