..With my body swapping code, I can't get the changes to save on both players, only the one first mentioned in the code.
Is there some way I can do like this..
M.BSwapSave()
as long with..
M2.BSwapSave()
So they both occur at the same time, and therefore work.
ID:270154
Jan 22 2006, 6:46 pm
|
|
For some reason, Still does not work.. The body swap fails, only one user manages to log in, the other keeps loading off the previous save. | ||
Byond cant run two procedures at the same time. I beleive that is called multi-threading and it is very complexe. And besides, if you did run them both at the same time, you can't swap two peices of data magicly like that. Its a 3 step process. Exemple :
You have a display full of books, and a box full of CD cases. You want to put the CD cases on the display, and put the books in the box. Step 1, take the CD cases out. Step 2, put the books in the box. Step 3, place the CD cases on the display. Can't just swap them. | |

Hiead