Search Results
Kalcor a real gangsta. RIP fallen of 4/11. RIP SA-MP.
17,464
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...
160
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...
35,759
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.
818
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...
11,185
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...
165
Here, I present to you: "formatnumber.inc". Edit: np
130
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, `...
251
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 ...
251
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...
136
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...
202
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.
123
The one who searches, finds. http://pastebin.com/f5e1458dc
162
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, ...
135
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...
207
Код: SendClientMessage(playerid, COLOR_AQUA, "Вратата е отворена"); return 1 } You're missing a semicolon ";" in two places in your code, both after "return 1" statement.
107
You can detect if they're holding the key. Check the Wiki page.
98
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...
141
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?
128