Battledale_PRC8/_module/nss/sf_h_next.nss

13 lines
249 B
Plaintext
Raw Normal View History

// Created By Scarface
void main()
{
object oPC = GetPCSpeaker();
int nHead = GetCreatureBodyPart(CREATURE_PART_HEAD, oPC) + 1;
if (nHead > 192)
{
nHead = 1;
}
SetCreatureBodyPart(CREATURE_PART_HEAD, nHead, oPC);
}