Search Results
Finally, thank you.
42,309
Post it on here https://sampforum.blast.hk/showthread.php?tid=447813
132
Код: public OnPlayerRequestClass(playerid, classid) { SetPlayerTeamFromClass(playerid, classid); return 1; } Код: SetPlayerTeamFromClass(playerid, classid) { if(classid == 0) ...
189
Use SSH, i have software recommendation to you https://www.bitvise.com
232
I still use but i still prefer use this for command, admin system, map, etc. This will help me to edit script for future release. Code: #include "../gamemodes/command.pwn" Code: #include "../gamem...
690
Why camera are not switch between case0, case2, and case3 when player are connected and stuck at case3? Код: new ConnectCam = random(3); switch(ConnectCam) { case 0: { Interpolate...
84
You can make it. Код: new Float:driftSpawn[][4] = { {-358.1943, 1531.2908, 75.3594, 264.7289}, {2265.3010, 1399.5085, 42.8203, 269.7637}, {-2489.8352, -616.3491, 132.5658, 178.7447}, {2243.2...
152
Attach object to player? https://sampwiki.blast.hk/wiki/SetPlayerAttachedObject
136
typo https://uphinhnhanh.com/image/18vA3Y Quote: #include <progess2> right Quote: #include <progress2>
180
Use GetVehicleComponentType and GetVehicleComponentInSlot see https://sampwiki.blast.hk/wiki/GetVehicleComponentType and https://sampwiki.blast.hk/wiki/GetVehicleComponentInSlot.
106
I have a dialog command to display a list of driftcar. /driftcar command Код: public OnPlayerCommandText(playerid, cmdtext[]) { if (strcmp("/driftcar", cmdtext, true, 10) == 0) { ShowP...
88
Quote: Originally Posted by Eoussama see that? before you display the dialog, you're checking if the player is already in the driver seat, which he's not at the moment this callback is tr...
179
Quote: Originally Posted by TomRedlake Код: return 0; change it to Код: return 1; any try this: Код: if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER) { ShowPlayerDialog(pl...
179
i enter vehicle with id 574 and dialog wont show, what's wrong with this code? PHP код: public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger) {     if(SweeperSideJob[playerid] ...
179
I have found the problem, its a timer. I've set the timer 6000 milisecond * 2, this is why the textdraw not showing. But i made a new function for the textdraw for 1000 milisecond but the textdraw d...
226
I dont know why this code didnt work. First, i make a statement about textdraw will change based on weather. Example : If weather rainy, the textdraw will show Rainy. My code. PHP код: newÂ...
226