Search Results
Kalcor a real gangsta.
RIP fallen of 4/11. RIP SA-MP.
29,380
Require the user to input their password again, udb_hash it and compare it with old pass, then if it matches, hash the password with SHA-256 and store it. Hashes are always 1-way and cannot be reverse...
249
Quote:
Originally Posted by kurta999
xDDDDDD im glad that i stopped play this shit years ago
Well I'm sad you feel this way.
Most people in the announcement thread are gravely mistake...
64,830
Top meme of 2018. Thanks.
16,293
Beautifully written tutorial. Great explaining. I'll for sure be checking it when porting my script(s) that use the old version(R7) of the MySQL plugin.
1,209
All the more reason this update should've never happened for SA:MP. It just needlessly complicates things in all aspects. I personally love seeing this mod getting updated but this one update were may...
16,435
Here is the mistake:
Код:
new PlayerText:TXT_TD_Text[MAX_PLAYERS][ 12 ];
new PlayerWeapon[MAX_PLAYERS][13][P_WEAPONS];
for (new i = 0; i <= 12; i++) {
PlayerTextDrawSetPreviewRot(pl...
307
Here, I present to you: "formatnumber.inc".
Edit: np
277
Since Vince hadn't seen this or replied yet...
Assuming a table structure like this one:
Код:
CREATE TABLE `Players` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`password` VARCHAR,
`...
396
Well to start with, any decent programmer will name variables according to the international language which is the de-facto standard, that is - English. But putting that aside I see why you wanted to ...
396
Why would you even want to enter debug mode, it only has a few basic commands and it is therefore very limited in contrast to gamemodes, where you can make whatever you want.
Oh, and running "samp_de...
212
You don't need sscanf for such a simple check in your "shift" command. Observe:
PHP Code:
CMD:shift(playerid, params[])
{
if (isnull(params)) return SendClientMessage(playerid, 0xFFEE...
298
Get the newest crashdetect plugin and compile with extra debug info (pass the -d3 flag to the compiler). That should help you see exactly which variable is going out of bounds and where.
259
The one who searches, finds.
http://pastebin.com/f5e1458dc
253
You forgot to pass the text draw id by reference, it happens
Код:
public CreateTD(&Text:TD, Float:x, Float:y, const txt[], Float:LetX, Float:LetY, Float:TxtX, Float:TxtY, Algn, Col, Outline, ...
248
What crashdetect version are you running? Also, are the other plugins (namely sscanf) the latest version?
Nothing else pops to mind, except for one thing which I read somewhere on this forum and that...
402
Код:
SendClientMessage(playerid, COLOR_AQUA, "Вратата е отворена");
return 1
}
You're missing a semicolon ";" in two places in your code, both after "return 1" statement.
176
You can detect if they're holding the key. Check the Wiki page.
161
By using GetVehicleZAngle and trig:
pawn Код:
new vehicleid = GetPlayerVehicleID(playerid);new Float:vX, Float:vY, Float:vZ, Float:vAngle;GetVehiclePos(vehicleid, vX, vY, vZ);GetVehicleZAngle(veh...
255
I believe GetPlayerCameraPos should return the current camera position irrespective to the looking mode the player has. I still don't grasp what exactly are you trying to do, is it for an AntiCheat?
241