Can anyone tell me what the numbers (I've underlined and bolded) in this line mean? I will attach the full script.

new StealableEntry(Map.TerMur, new Point3D(368, 605, 26), 4608, 6912, typeof(GargishBentasVaseArtifact)),

I've added new artifacts to my shard and want them to auto spawn with the rest in this script.

Thank you so much
Post automatically merged:

I should add I think it's got something to do with the times it spawns, but I'm not sure how it's formatted.
 

Attachments

  • StealableArtifactsSpawner.cs
    27 KB · Views: 2
Last edited:
StealableEntry(Map map, Point3D location, int minDelay, int maxDelay, Type type)

368, 605, 26 is the location to spawn the item
4608, 6912, are min/max delay in seconds before respawning
 
StealableEntry(Map map, Point3D location, int minDelay, int maxDelay, Type type)

368, 605, 26 is the location to spawn the item
4608, 6912, are min/max delay in seconds before respawning

Thanks so much, I was pretty sure it was time but wasn't sure what format it was. Thanks again, appreciate it.
 
Back