Search Results
Maybe you're running your script based on another Pawn directory. Try to:
1. Open a new file
2. When you click to save it, JUST SELECT (DON'T COMPILE) your server gamemode/filterscripts directory.
3....
423
Bumping topic without 12 hours of interval is not allowed, and you should search at "Filterscripts and Includes" section. I found this in only one search, at the first page, this topic was the third/f...
349
Hello guys I have this script, It's a Interior made by Cozza and Joe:
Code:
#include <a_samp>
new Intropic[MAX_PLAYERS];
new Watching[MAX_PLAYERS];
//new Float:Pos[MAX_PLAYERS][3];
//new Floa...
302
I think you're trying to acess a enumeration, I dunno, I'm not psych, you could show your code to us (:
773
You can add it at the end of your code, scroll the code page at max you can, the copy the function I send to you there. And as Etch said, remove:
Код:
forward PlayerToPoint(Float:radi, playerid, ...
607
You can't just forward a function, you need THE FUNCTION.
Anyway, add it to your gamemode:
Код:
PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z)
{
new Float:oldposx, Float:oldposy, ...
607
Here is a saving system using FileIO, this tutorial is made by Seif_:
http://forum.sa-mp.com/index.php?topic=77756.0
473
You missed the OnPlayerCommandText closing bracket (}), look at the end of your code. You just typed return 0; and you don't closed the oped bracket from line 72.
Here is the working code:
Код:
...
290
pInfo is a common variable used for save Player Information, they use it as a Multidimensional Array, so tecnically you create a variable that represent all the player information. Example:
Код:
...
548
Don't create your Objects at OnPlayerCommandText, create them at OnGameModeInit/OnFilterScriptInit.
867
Hello guys (:
I don't know what's happening with my script:
http://pastebin.com/zBk4grzH
(I only show the important pieces)
I get A lots of missing arguments and tags mismtatches, for the FLOATS va...
301
When I start my server, it crashes, the log does not say anything. I don't know what to do!
http://pastebin.com/C5ZSw0gB
335
Now my code is like this:
Код:
public OnPlayerSpawn(playerid)
{
new vehicle = random(sizeof(Cars));
new Float:X, Float:Y, Float:Z, Float:A;
GetPlayerPos(playerid, X, Y, Z);
GetPlayerFacingAng...
969
But CreateVehicle says to use model id, https://sampwiki.blast.hk/wiki/CreateVehicle
969
Код:
public OnPlayerRequestClass(playerid, classid)
{
SpawnPlayer(playerid);
return 1;
}
Stills not working, Don.
665
I have this piece of code, but it doesn't works.
Код:
public OnPlayerSpawn(playerid)
{
new Cars[93] =
{
400,401,402,404,405,410,411,412,415,418,419,420,421,422,424,426,429,434,436,
...
969
How to bypass Class Selection Screen? Like, when the player conenct and go to the Skin/Class Selection Screen it automatically spawns. Any ideas how?
665
I wanna retrive all vehicles ID's, then, make a random of them and put player in the random vehicle.
969
How can I retrive all vehicles ID? Pelase help me guys (:
969
