Compare commits

..

3 Commits

Author SHA1 Message Date
fb6071a7e5 fixed ip for the client to localhost 2017-06-10 16:20:21 -04:00
d6d4b8f9b2 Create README.md 2017-06-08 10:15:22 -04:00
3d3d83ff9c Create README.md 2017-06-08 10:14:47 -04:00
2 changed files with 5 additions and 1 deletions

View File

@ -1,2 +1,6 @@
# IntroSoftwareProject
All the code
Also a working example of my 3 main libraries (multi, bin, and net) and their usage with love2d.
Feel free to look through the code to get an understanding of how things work together

View File

@ -11,7 +11,7 @@ require("net") -- Loads the networking library
require("net.chatting")
require("net.settings") -- loads the networking settings module
require("net.identity") -- loads the networking identity module
client=net:newTCPClient("69.113.201.7",12345)
client=net:newTCPClient("localhost",12345)
if type(client)=="boolean" then error("Please run the server file first!") end
client.OnUserLoggedIn:connect(function(self,data)
anim.Visible=false