Search Results
Indeed. Found them now I believe. Try this one instead: http://pastebin.com/0GX8xx2T
147
Be sure to post the whole code for starters, so it's easier for us to find the error. Your error is probably too many curled brackets at the end. Try this and tell me if it works. http://pastebin.com...
147
If the code is pasted complete, your issue would most probably be that you're missing a curled bracket } at the end of OnPlayerStateChange.
147
With 0,0,0 you mean at the position 0,0,0? Well, for that it's just to use the GetPlayerPos(). To make them crouch use SetPlayerSpecialAction(). To appear some object in their hand you can use the Set...
52
Under my knowledge I don't think SAMP servers have any built-in idle. Though I have a server myself on a dedicated box which I know can go into a "idle" mode if no connections are made over a period o...
89
Have you declared TEAM_GERMANY etc? Could you point out where in the script line 16710, 16712 and 16714 is? As I don't know where to look for the error.
147
Oh yes, of course, Sorry. pawn Код: public BuildVehicles(){    new File:carfile = fopen(CARMOD_FILE_LOC, io_read);    new linebuffer[256]; // Stores the value of each line.    // This check...
77
Hello, I'm having a issue with my vehicle-saving code.. For some reason when the script spawns the vehicles, they spawn "frozen" in mid-air, like you see on this picture. They unfreeze once I touch ...
77
Ah, of course! Thanks a lot
62
Hello, I got a question about the switch() function. Here is an example: pawn Код: switch(reason)        {            case 0:            {                format(string, ...
62
I don't think ZCMD is the problem here. But as you described, it says AddStaticVehicleEx works only in OnGameModeInit(). And ZCMD is under OnPlayerText(). The only way to fix this as I see is to make...
106
You should look at NPC recordings tutorials And train stations are already default made in GTA San Andreas, unless you want to add custom ones. But note that you can't add custom tracks that would w...
52
I'm not sure about this. But what I feel is wrong that you have the chat command under main() It should be under a function named public OnPlayerText(playerid, text[]) And why do you make a command ...
63
Hello again SAMP Forums! I'm back again in SAMP scripting buisness Fininshing my gamemode, but I got a little stuck where Seif's animation filterscript has now stopped working. Can't find a update ...
50
If you try to run a different gamemode, and the server still laggs, then it's something with your PC/Server. If not, it's something in your script indeed. Hard to say what laggs in your script. If yo...
78
What do you mean that it doesn't kick in? Doesn't it work? Does it error when compleing? What happens? What kind of problem are you looking for?
350
Depends what you run. If you run a GF edit, you'll have to give the faction a number and skin and so on (just copy and edit what the other factions are made of) If you make a script from bottom, you ...
79
Quote: Originally Posted by kert93 Reinstalling SA-MP didn't help My suggestion sounds useless. But worth try it: Reinstall the SAMP server. Just download it and config it again and up...
214
Quote: Originally Posted by The_Moddler You will never get 2 checkpoints at the same time, unless you use one regular checkpoint and another race checkpoint. Read Wiki. Indeed, the SAM...
165
Looks like we both forgot to target who is going to get those values Like pawn Код: PlayerInfo[playerid][pLocX] = x;PlayerInfo[playerid][pLocY] = y;PlayerInfo[playerid][pLocZ] = z;
161