Spidertron Extended


Adds Spidertron MK2, Spidertron MK3, the Immolator and the Ghost Weaver, more powerful upgraded versions of Spidertron that can be crafted from the original, with enhanced firing capabilities, larger inventory size, equipment grid, radar coverage, mobility and much more.

Content
3 months ago
1.0 - 1.1
64.8K
Combat

b Not MP safe

3 years ago

Putting REQUIRE statements inside IF statements is not multiplayer safe.

In your data.lua file you have multiple IF statements like this.

if not settings.startup["disable-spidertronmk2"].value then
    require("prototypes.spidertronmk2")
end

What you should be doing is performing these checks within the prototype file and exiting early.

EG at the VERY top of the file ... prototypes.spidertronmk2

if settings.startup["disable-spidertronmk2"].value then
    return
end
3 years ago

Working on it, thanks for the info.

3 years ago

Modified everything i could find. New version 0.3.0, thanks again for the info, and please tell me if anywhere else the code would have any issues.

3 years ago
(updated 3 years ago)

hmm, Locking the thread if there are anymore issues, please open another thread and thanks again for the help.

This thread has been locked.