Search Results
Politiebureau* en meer van dat soort dingen.
3,405
For people who come here after searching: the solution for warning 211: possibly unintended assignment is that you are assigning a value inside an IF-statement. Код: /** will 99.9% of times defau...
500
This is why indentation exists. Look over your code and at the lines where you got your opening brackets. Then look under it to see if you got a matching closing one.
514
De laatste van je voertuigen worden niet gecontroleerd omdat je loop TOT het nummer gaat en je nog een voertuig hebt buiten die array grootte. 14 bij SASD en 20 bij SFMD
3,655
Quote: Originally Posted by podalove what about the TTL ? TTL is Time To Live; which notes the time (in seconds) that this rule is being cached by all servers
632
Quote: Originally Posted by SpikeSpigel Код: PlayerShowus[playerid] = CreatePlayerTextDraw(playerid, 641.875000, 288.750000, "LD_SPAC:white"); PlayerTextDrawLetterSize(playerid, Showu...
578
Are you 100% sure the database service has crashed? Because there is nothing in that log that shows that the service actually shut down.
514
Find your other 'string' variable in the global namespace and verify if it is the same size. Don't just copy/paste code 'because it works'. Also: your code can be so much smaller/easier. Since the in...
610
Did you know that if you use the magic that is ****** and use 'site:forum.sa-mp.com' you can find everything you just described and that more magic happens? If you keep asking for stuff, you are only...
1,017
Quote: Originally Posted by Krokett My guess would be: int is a reserved keyword thus he needed to add quotation marks to int. That is exactly the problem. However, 'text' is a reserved...
761
Can't you just use these: Код: {"Los Santos", {44.60,-2892.90,-242.90,2997.00,-768.00,900.00}}, {"Las Venturas", {869.40,596.30,-242.90,2997.00,2993.80,900.00}}, ...
854
Код: id <= MAX_HOUSE I am guessing MAX_HOUSE is defined as 500? Then the containing array has ids from 0 to 499, meaning you cannot access element 500 because it is not there. Change the <= ...
458
For your array index out of bounds. I am guessing it is that IsShopVehicle will return a value -1 and you are trying to get the array with this: Код: VehicleInfo[IsShopVehicle[vehicleid]][vColor1]...
961
Код: if(IsPlayerInRangeOfPoint(playerid,3.0,posX[pid][id],posY[pid][id],posZ[pid][id])) { //something here... } else return SendClientMe...
726
I am guessing it is this one: VehicleData[i][vPark] that does not match in sizes
680
That is because you are only checking one char. text[0] cannot contain two items
430
Код: SetTimer("Unjail",time*1000,false); As I am taking it, you are now entering it in milliseconds, you can just multiply it by 1000 to go from MS to S
745
http://stackoverflow.com/questions/2...entation-fault
358
Код: CMD:back(playerid, params[]) { new name[MAX_PLAYER_NAME], stringz[128]; GetPlayerName(playerid, name, MAX_PLAYER_NAME); format(stringz, sizeof(stringz), "%s Back", name); SendClie...
765
You can create a ticketcost[playerid] variable and save the cost for the ticket for the player.
556