7 lines
139 B
Plaintext
7 lines
139 B
Plaintext
|
void main()
|
||
|
{
|
||
|
int iCode = GetLocalInt(OBJECT_SELF,"MODCODE");
|
||
|
int nNew = iCode + 3;
|
||
|
SetLocalInt(OBJECT_SELF,"MODCODE",nNew);
|
||
|
}
|