8 lines
243 B
Plaintext
8 lines
243 B
Plaintext
|
void main()
|
||
|
{
|
||
|
int iCurListPoint = GetLocalInt(OBJECT_SELF,"ASG_MIC_CURRENTLISTPOINT");
|
||
|
iCurListPoint=iCurListPoint-6;
|
||
|
if (iCurListPoint<0) iCurListPoint = 0;
|
||
|
SetLocalInt(OBJECT_SELF,"ASG_MIC_CURRENTLISTPOINT",iCurListPoint);
|
||
|
}
|