Search Results
I like it, however I think the Applications page needs updating with a nice SA-MP style table or something to make it look better. I'll have a go at it later today maybe. I'm pretty sure that people ...
160
Quote: Originally Posted by V1ceC1ty No I think he should write some stuff in first. You can't compile an empty script. -.- Lol man, he was just trying to get the compiler up to show hi...
123
I think I remember something about IPL rotations being in quaternions, or perhaps they are simply radians. Try out a few different methods of conversion to see if you can get them to look the same as ...
255
Timers have always had problems with strings, and as far as I'm aware - they haven't been resolved. I counter-acted against this by using global variables, or using properties, though that may not be ...
197
Quote: Originally Posted by LucasB[FL ] Filefront and Sendspace links are down. Can you fix them? Indeed they have, and I have no copies of the zipped package nor what was in it, so unl...
666
IP addresses are strings, not integers, so use the dini string functions instead of the integer ones. ~Cueball~
217
"Build game" can be taken a few ways, but I immediately thought of MINECRAFT. It's a little lame, it's a little fruity (what I like to call 'luity'). It's made entirely from blocks (like lego) but it'...
174
You said that it's working now, but there is still a theoretical problem within your code. When you call random(), you need to know that it starts returning values from and including 0, like this: К...
118
Functions, by definition, can only give one possible y-value for any given x-value. A vertical parabola is an example of a function. A horizontal parabola however is not a function as it has more than...
90
Funnily enough, I was reading about this yesterday. It's called spherical coordinates. All we currently have is the azimuth (player facing angle) We would need a way to get the elevation angle, and h...
197
Alternatively, you could simply undefine MAX_PLAYERS, then create a global variable with the same name and set it to that. pawn Код: #include <a_samp>#undef MAX_PLAYERSnew MAX_PLAYERS = 200;...
157
Quote: Originally Posted by [TDR Strike ] add on ur top of ur script Код: new pName; new kName; Rofl, nice solution, making the local strings into global integers. Don't do that, ...
96
Quote: Originally Posted by Mikkel I don't understand russian. What the? Sure, it wasn't perfect English, but it was understandable. Basically, he's seeing parameter errors in the serve...
181
Definitely OnPlayerConnect() is the way to go, because there is no guarantee that any players are connected at all in OnGameModeInit(). It takes time to connect after a gamemode starts, so your player...
87
Donny is right, you aren't indexing them properly, and it is most likely due to the fact that you don't actually give an index at all. Use this instead: pawn Код: cmd[0] = strtok(cmdtext, idx); /...
110
No, it is extremely possible to detect those keypresses, as long as the player has configured their game to use those keys. You can not count on a single key function being assigned to a certain key -...
203
Ergh, this is exactly what the wiki is for - checking the function descriptions would have told you everything you need to know. SetTimer() calls a function without specifiying the parameter values f...
102
You need to pass arrays to the function, which contain your co-ordinates (your "XYZ" (though with this function, there is no Z-axis evaluation)): pawn Код: new Float:PointA[2] ={  // X, Y of Poin...
232
Ughh, good things take time - how about cutting them some damn slack and waiting. Don't think about another release until you have to (ie: when it is released). You've already got an incredible mod th...
1,902
My mistake, it was Angle2D() pawn Код: Float:Angle2D(Float:PointA[], Float:PointB[]) // Credits to 0rb - http://forum.sa-mp.com/index.php?topic=61574.msg582490#msg582490 (http://forum.sa-mp.com/i...
232