Jump to content

Client-Server logic question.


Catfish55

Recommended Posts

How would I go about doing the following:

 

If X on client, do Z on server.

 

So basically, check something on the client, and do it on the server if it is right. Afaik I can't use the world.isremote idea because as soon as I check client it won't be able to check server again within the if statement.

Link to comment
Share on other sites

First things first: You should be checking things on the server, not the client.All the client is supposed to do is send user input, and receive what the client should do based on said user input.

 

So I push a the spacebar: Client is told that the spacebar has been pushed, and then notifies the server. The server then checks to see what is supposed to happen when the spacebar is pushed. The character is supposed to jump so the server checks to see if the character can jump. It can. The server then makes the character jump and tells the client that the character has jumped. The client then makes the character jump visually.

We all stuff up sometimes... But I seem to be at the bottom of that pot.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.