Search Results
OnDialogResponse
"Returning 0 in this callback will pass the dialog to another script in case no matching code were found in your gamemode's callback.
It is always called first in filterscripts so ret...
2,400
Maybe something simplier for beginning, i know you have download somegame and dont have any idea what mysql even does, so maybe just practise sql queries, saving loading, updateing and then you unders...
545
new message[256];
so much string space for such a message?
new Float: X, Float: Y, Float: Z;
GetPlayerPos(playerid, X, Y, Z);
new Float: velocityX, Float: velocityY, Float: v...
2,326
dont to those stupid checks
just create variable
PHP Code:
new PlayerMoney[MAX_PLAYERS];
PlayerMoney[playerid] += 100; // for adding money to player
PlayerMoney[playerid] -= 100; // f...
661
https://github.com/CKA3KuH/StrickenKid-MySQL
40,581
Well you could just compare distance what is travaled with 1 second, when distance is too big, just ban player.
Vehicle speed checking can be avoided when hack teleports vehicle very fast forward, veh...
347
Well there can't be done anything about it, because server just creates real player sessions, what gameserver takes as real players.
Well it could check if for example over 50 players has same IP aa...
2,668
Start using foreach, makes loop writing much easier and efficent.
You may use server administrator rank names other places also, so you can define it globally.
You can also store players name into arr...
502