Search Results
use at each case posicioness[0]=your_x_cord (eg. 1532.2136); posicioness[1]=y; posicioness[2]=z; posicioness[3]=a; and it should work..
130
have you tried to print the Pos array, in order to see where is the problem..!? try to print it in the while loop.
208
Use this command and tell us how many vehicles you have already created. PHP код: native IsValidVehicle(vehicleid);   // Count vehicles public OnPlayerCommandText(playerid,cmdtext[]) {  Â...
85
Change new pts[cTp]; with a normal array like new pts[2]; and after use pts[0] instead of your pts[red] and pts[1] instead of pts[blue] and it should work.
85
You have to change cInfo[i][c_r]=r; with c[Info[i][c_r]=temp_r;
72
You have already reached the limit of maximum vehicles on map. You have to use a streamer for vehicles.
85
Use the rRyder's race system in a "default" gamemode given when you download samp-server from the official page. If it works, is your gamemode problem and you have to show us your gamemode, maybe just...
146
PHP код: stock DecimalPoint(money) {     new str[16];     if(money >= 0)     {         format(str, sizeof(str), "%d$", money);         if(1000 <= mone...
93
Use OnPlayerWeaponShot and return 0 when you want to stop the shot.
138
I have a server with 100+ players sometimes 200+. If you have a very good game hosting (a good processor) will be just a piece of cake, because yeah maybe the public will be called 5 times ~ in the sa...
115
A kind of bug Set and Get. The setted hp is not setted immediately, because the code is too fast for it. Example: PHP код: forward ShowMeMyHealth(playerid); public ShowMeMyHealth(playerid) { ...
115
Use the script in Onplayerupdate or I don't understand what do you mean
166
Use SetPlayerTeam in order to put someone in a team; Use in PHP код: public OnPlayerWeaponShot(playerid, weaponid, hittype, hitid, Float:fX, Float:fY, Float:fZ) {      if(hittype==B...
189
Because you don't have free slots for CreateDynamicObject. You have already used all with CreateObject. You have to use just few CreateObject like for the object where a player has spawn or just for o...
102
try to put before each IF or any decision instruction a message like SendClientMessage(playerid,-1,"BUG 1"); to the next one "BUG 2" etc. And take a look at the ids 1,2,3,4, what kind a bug they recei...
156
I solved the problem. And I didn't have any errors. Code was compiled with compiler from 0.3.7 so.. maybe the streamer plugin or crashdetect were the problem.. Thx anyway.
110
Hey, I have installed on my server 0.3.7 R2 but DisableRemoteVehicleCollisions does not work.. I tried to use copy again the compiler of pawn and compile the code again but the same things.. I have th...
110