Jump to content

about connection to internet


Master_MTA

Recommended Posts

hello their i just wanna know is there any way to check if the player connected to internet or no

it's doesn't matter if he was in local server or else

i just wanna to check if he have internet connection or not

i know i can do it with fetchRemote but it's take time to configuration  so i need any way else faster 

Link to comment
2 minutes ago, N3xT said:

anything else means he's disconnected

thx i will check it

5 minutes ago, N3xT said:

I have another way but I'm not sure if it's going to work perfectly or not

 

that is not work because getplayerip function doesn't get the global ip of user in local server it's get his local ip  

any other idea+_+

Link to comment
9 hours ago, Master_MTA said:

hello their i just wanna know is there any way to check if the player connected to internet or no

it's doesn't matter if he was in local server or else

i just wanna to check if he have internet connection or not

i know i can do it with fetchRemote but it's take time to configuration  so i need any way else faster 

I'm not sure exactly what you want, but maybe that's what you want

onPlayerNetworkStatus

 

Edited by Simple.
Link to comment
23 minutes ago, NeXuS™ said:

to join your server.

that's not what am talking about i need something that make me know if user have connected to internet or no is there any way i will create resource depends on this if the user have internet connection then load resource else don't load it that's what am talking about 

Link to comment
  • Moderators

In case of a local-server. JavaScript + browser might do the trick as well:

https://wiki.multitheftauto.com/wiki/ExecuteBrowserJavascript

https://stackoverflow.com/questions/189430/detect-the-internet-connection-is-offline

if (navigator.onLine == true) {
	console.log("This might work");
}

(no guarantees for this browser)

 

https://wiki.multitheftauto.com/wiki/Resource_Web_Access

!important

 

 

  • Thanks 1
Link to comment
1 hour ago, NeXuS™ said:

internet

look u didn't understand me so i will explain what am gonna do

first of all am gonna create dxlib editor for my own lib good

so this is resource must be work on 1 pc only just enter the serial which u get it when u bought the dxlib editor from me good

so the idea i have a database on my vps i will make the resource when it start for the first time to ask the user to enter the serial but before that

i need to check if the user have internet connection or not because if callRemote return false that's mean my website is shutdown in this case i will make dxlib editor free for all users

so i need first to check  if the user is connected to internet or not to avoid returning callRemote false while my website is lunched u got it?

22 minutes ago, IIYAMA said:

(no guarantees for this browser)

 

that's will be enough thx

i don't know how this idea didn't come to my mind :D

thx dude

Edited by Master_MTA
  • Like 1
Link to comment

Or you can just use fetchRemote and use the responseInfo/success part to check if his serial is in the database. I'd reconsider this resource, as this means you have to have an internet connection to be able to use the script. Are you planning to give them a compiled script, or a source code?

  • Thanks 1
Link to comment
12 hours ago, Master_MTA said:

i know i can do it with fetchRemote but it's take time to configuration  so i need any way else faster 

 

Just now, NeXuS™ said:

Or you can just use fetchRemote and use the responseInfo/success part to check if his serial is in the database. I'd reconsider this resource, as this means you have to have an internet connection to be able to use the script. Are you planning to give them a compiled script, or a source code?

 

Link to comment
1 minute ago, NeXuS™ said:

ompiled script

compiled script

2 minutes ago, NeXuS™ said:

etchRemote and use the responseInfo/succes

yeah that was my idea but it's take a while to fetchRemote  & it's not stable some times it's returns false while u have internet connection any way thx for ur replay i didn't seen it thx

@iMr.WiFi..!

thx all

12 hours ago, Master_MTA said:

i know i can do it with fetchRemote but it's take time to configuration

 

Link to comment

Easy way. As you have a compiled script, this means you can add a line into it.

local givenSerial = -- The player's serial who bought the script.

function resourceLoad()
	if givenSerial == getPlayerSerial(localPlayer) then
		-- Loading functions
	end
end
addEventHandler("onClientResourceStart", resourceRoot, resourceLoad)

This means you'll have to get their serial, when they make the purchase, and then compile the resource this way.

Link to comment
1 minute ago, NeXuS™ said:

serial

am not talking about user serial am talking about serial that i made it from chars and numbers and give it to user to enter it to edit box and every thing after that is easy callRemote,check with php etc..

i will sell this resource for more 1 user so it's hard to me to edit script for every user and compile it :D

i will make every think automatically buying the script from website and creating serial for user when he pay after paypal success etc

thx dude ..    

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...