Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
1/10/11 (Multiplayer test... sort of)
#1
Today's update:
  • Parts are made non-collidable when dragging
  • Changes to the Collidable property take effect immediately
  • Tools>Remove Player actually works
  • Chat and the Chatted event (does not work in MP yet)
  • A whole lot of work on multiplayer, build mode particularly

I didn't add tools, but I worked a lot on multiplayer building using the full editor. The following features are implemented:
-Changing properties, adding objects, deleting objects
-Adding hinges and welds
-Starting/stopping the simulation
-Editing scripts; they are locked so only one person can edit them at a time
-Server's console output gets sent to all players
-When you type something in the command bar, it is executed by the server

These things are known NOT to work.
-Copying and pasting
-Loading a new game while connected to a server (this will be disabled)
-Chat
-Grab tool
-Move to front/back
-Tools

Characters work, but I disabled them because this test is only for the multiplayer build mode.

This is not the official test so there are a lot of bugs.

To connect, type this in the command bar and hit enter:
Code:
game:getService("NetworkClient"):start("buildismtest.no-ip.org", 22015)
Reply
#2
Nice work Smile
Love this game, Good luck!
Shiggity Shiggity Shwa
[Image: Animated.gif?t=1314294800]
Reply
#3
Update #2:
  • You can copy and paste in the chat bar
  • Fixed a bug with events that would cause random errors
  • Added loadstring(). I had to make it myself, so it might not work the same way as in other games.

loadstring() returns a function, you then have to call it with an extra set of parentheses:
Code:
loadstring("print(\"Hello\")")()

Using pcall() you can check whether the script was successful or not and get the error message.

Code:
function dostring(code)
    local status, result = pcall(function() loadstring(code)() end)
    if not status then error = result:sub(14); print(error) end
end
Reply
#4
[/size]but i think you should be able to track your stats in multiplayer,like amount of KOs


i know im getting the KO thing from roblox but its just a thought
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)