Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

18 lines
368 B
Plaintext

void Remake(int nType, string sResRef, location lLoc)
{
CreateObject(nType, sResRef, lLoc);
}
void main()
{
object oMod=GetModule();
string sResRef=GetLocalString(oMod, "resref");
int nType=GetLocalInt(oMod, "type");
location lLoc=GetLocalLocation(oMod, "location");
float fDelay=GetLocalFloat(oMod, "delay");
DelayCommand(fDelay, Remake(nType, sResRef, lLoc));
}