Using Persist=1 in world.Export throws an error, however, nulling file, and placing a 1 as the 3rd arg works.
Numbered Steps to Reproduce Problem:
Code below.
Code Snippet (if applicable) to Reproduce Problem:
world.Export("byond://127.0.0.1:9092",Persist=1)
|
Expected Results:
File to be overlooked, and Persist to be set to 1
Actual Results:
Runtime Error Gives:
Invalid network address in transmission () runtime error: illegal use of list2args() or named parameters proc name: EstablishConnection (/mob/verb/EstablishConnection) usr: Leur (/mob) src: Leur (/mob) call stack: Leur (/mob): EstablishConnection("localhost:666")*Do note, it says localhost:666, however the full address typed was in fact byond://localhost:666
Does the problem occur:
Every time? Or how often? Everytime
Workarounds:
world.Export("byond://127.0.0.1:9092",null,1)
|