Search Results
Quote: Originally Posted by Mrhind This happens because depth in the underworld is very low. (your model) It happened to me once I tried to make [...] Thank you for your reply. I tried...
1,182
Hello and welcome. I'm a Blender newbie, which means I have basic knowledge of getting around with the software. I am trying to figure out as to why both vehicles and peds are disappearing when being...
1,182
OnPlayerDead calls OnPlayerSpawn, thus no animation will perform if you apply it inside OnPlayerDead callback. You will need to pass a variable to OnPlayerSpawn to determine if a player died and apply...
216
If you're talking replacing the map server side (so everybody who connect can see it) then no, you can't. Modloader has nothing to do with SA-MP as it interferes only with the client's files.
612
What kind of files are you trying to push through kdff other than .dff or .txd? Keep in mind that it only supports named extension formats.
259
I can only assume objects without a collision are treated by the GTA's engine as LODs, therefore disappearing behaviour is normal. Like suggested before, apply collision using kdff and Collision File ...
388
Select your desired face with RMB and in face select mode. In properties section go to Material > Transparency > Alpha. Set alpha channel to any number in between 0 and 1. Remember to checkbox "...
265
In order to achieve this, you will have to utilize multiple functions, including but not limited to CreatePlayerObject, SetPlayerCameraPos, CreatePlayerTextDraw, ApplyAnimation. Please refer to SA-MP ...
122
Central European (Windows 1250) does not support Latvian language. In fact, it is assigned, among other Baltic languages, to ISO-8859-4 of ASCII character encoding set, or, as assigned by Microsoft, t...
672
This error refers to a segmentation fault, which basically means you are trying to access illegal memory, or a memory not assigned to your array. Furthermore, you cannot access foo[1000] if you only a...
110
Instead of deleting unused rows, I suggest creating a new column for this table called "active" and set value to 0 if that row won't be used in the future. That way you don't have to create same stuff...
147
Make sure you also copied plugins folder into the new directory. It should contain sscanf.dll and streamer.dll (.so extension for Linux based OS).
155
Hey everyone. When I try to edit object attached to me using the SAMP GUI object editor I can only move it in one direction. When I pull my mouse down, the object goas up anyway really fast. It's obvi...
61
Код: public OnPlayerRequestClass(playerid,classid) { SpawnPlayer(playerid); return 1; }
199
Can you be more specific on that?
74
It is not possible to use this key. These are the only keys that can be used in SAMP. You have to consider other way of evading from this kind of situations. You can check whether a player has been sh...
136
We aren't wizards, give us some code in order to help you. Maybe you forgot to let the player move again after spawning. Use TogglePlayerControllable and set it to 1 while spawning player.
88
Why wont you try moving this line to the very top of the code, but after your includes. Код: #pragma unused ExecuteHackerPlayerName
113
The problem is whether in TogglePlayerControllable used incorrectly (like you forgot to turn it off) or you have too many modes installed (where some of them affect your ability to move). Does this pr...
182
According to your third question - you will need to learn some basic stuff about SQL. However, it may look difficult to understand but after all it comes out to be pretty easy. First of all you need t...
99