08.09.2012, 17:55
You can't send two queries at the same time because its running on a single thread.
If you are interested you can read Slice's tutorial about understanding the sync: https://sampforum.blast.hk/showthread.php?tid=184118
Quote from the thread:
If you are interested you can read Slice's tutorial about understanding the sync: https://sampforum.blast.hk/showthread.php?tid=184118
Quote from the thread:
Quote:
The script runs on a single thread This might sound complicated for some people, allow me to explain: All the actions the server does are always after waiting for the latest action to finish. For example, if you have code that takes 3 seconds to run in OnPlayerConnect (such as the old GeoIP plugin), then the server will wait for that code to finish before doing anything else. |