15 lines
313 B
Plaintext
15 lines
313 B
Plaintext
void main()
|
|
{
|
|
int nCheck = d100(1);
|
|
if(nCheck <= 30)
|
|
{}
|
|
if(nCheck <= 75)
|
|
{
|
|
CreateItemOnObject("HealKit3", OBJECT_SELF, 1);
|
|
}
|
|
else if(nCheck <= 90)
|
|
{
|
|
CreateItemOnObject("HealKit4", OBJECT_SELF, 1);
|
|
}
|
|
}
|