Hello.
I started using multisync for my network code. I can't connect. I though I should start bare bones simple. But nothing works right now.
code for joining or hosting
print "host or join? (1 = host 2 = join)"
sync
done = 0
repeat
if keystate(2) = 1 then done = 1
if keystate(3) = 1 then done = 2
UNTIL done = 1 or done = 2
ip$ = "127.0.0.1"
`host
if done = 1
NET HOST 4,ip$
endif `host
`join
if done = 2
print "connecting "
NET CONNECT ip$
thing$ = NET GET ERROR()
endif ` join
and then in the loop I check for the number of players with
amount = NET GET PLAYER AMOUNT()
print "amount ",amount
amount never changes.
Thanks