Search Results
You are not even using dynamic 3D text labels..
188
Can you paste the specific code and not the whole gamemode?
117
Код: public OnPlayerCommandRecieved(playerid, cmdtext[]) { if(!Player[playerid][IsLoggedIn]) { GameTextForPlayer(playerid, "~w~You need to be ~r~logged in ~w~to use commands!", 3000, 4); ...
206
Creation code? Are you using streamer for pickups aswell?
188
https://sampforum.blast.hk/showthread.php?tid=573961 Code: native IsPlayerFacingPlayer(playerid, targetid, Float:range = 10.0);
135
Код: new teamCount[2], teamid; foreach(Player, ii) { teamid = random(2); SetPlayerTeam(ii, teamid); teamCount[teamid] ++; } This is what you should relay on. Basically loop through all players ...
76
Use MoveObject (assuming the plane is an object), set the player's camera on that plane object and get the object positions whenever he presses your desired eject button.
105
Anyone knows what is the limit of SVars? SA:MP limits tend to say that PVars are limited to 800, but what about SVars?
161
Quote: Originally Posted by iKarim The plugin was built with a newer version of gcc (glibc) which is not found in your system, I usually never use CentOS as I think it's harder to fix such...
276
Code: Failed (/lib/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by plugins/log-plugin.so)) I am getting this error while running my server on CentOS 7. I know this error usually occur...
276
Quote: Originally Posted by JaskaranSingh Sorry, that was a problem in pasting. The real problem still persists. Any error/warning logs?
131
You are trying to insert 6 values while writing only 5 variables. (missing pBanned) And by the way, you can just use: Код: mysql_query(g_SQL, query); Also, please check your mysql logs and see if ...
131
Seems like an infinite loop. Check your OnPlayerConnect for any unwanted timers/loops.
150
Just create a player textdraw, show it to the player and set the textdraw string to the wanted value. Should be easy.
67
Open map.lua using a Notepad or a text file. Then convert it using FFS converter or any other available converter the internet.
112
Quote: Originally Posted by Zeus666 What was wrong? In all 3 commands, you used different variables comparing to the ones you inserted in the sscanf. For example, in /setblood you have ...
107
I wonder why you are using 2 variables for death and kills? Код: PlayerKills[killerid]++; PlayerDeaths[playerid]++; pInfo[killerid][Kills]++; pInfo[playerid][Deaths]++; Remove one of them and pr...
246