I'm trying to make a book that (when read) adds about 12 map markers to the player, that just show up on the map, but cannot be fast travelled to.
If you'd be so kind as to help me out, I'd appreciate it a lot!
Thanks in advance!
ScriptName YourBookSctipt Extends ObjectReference AutoGlobalVariable Property bMarkersEnabledGLOB AutoObjectReference[] Property kMapMarkerArray AutoEvent OnRead() If !bMarkersEnabledGLOB.GetValue() bMarkersEnabledGLOB.SetValue(1.0) Int iIndex = kMapMarkerArray.Length While iIndex > 0 iIndex -= 1 kMapMarkerArray[iIndex].AddToMap() EndWhile EndIfEndEventShould do it.