Simple converting "uint" to "ulong" and ".ID" to ".ID.Value" didn't work, and created new error:
Failed to compile: Argument 1: cannot convert from 'ulong' to 'uint' | Line: 2509, Pos: 59
HOW TO FIX IT?
Simple converting "uint" to "ulong" and ".ID" to ".ID.Value" didn't work, and created new error:
Failed to compile: Argument 1: cannot convert from 'ulong' to 'uint' | Line: 2509, Pos: 59
HOW TO FIX IT?
I had same issue. I updated the plugin as such:
Changed entityMarkers.ContainsKey(entity.net.ID.Value) to entityMarkers.ContainsKey((uint)entity.net.ID.Value) to cast NetworkableId to uint.
I needed to add this ((uint)entity.net.ID.Value) thing in at a couple spots.
Error while compiling LustyMap: Argument 1: cannot convert from 'NetworkableId' to 'uint' | Line: 691, Pos: 43