Search Results
Quote:
Originally Posted by BM[UK
]
No
That is correct. Look for zones.inc by Mabako (I think?). You can use the functions in that to make your own location system with your own font.
174
Sounds to me like you're trying to rip CrazyBob's script...that's a big no no.
290
Ask in the script request thread. And you clearly haven't use SA-MP Wiki properly if you are getting errors because it explains how to do exactly what you're asking, without mistakes.
211
Quote:
Originally Posted by laser50
thats the problem, its a bit too difficle for me...
Well then you need to learn the basics. You can't expect us to help you right down to the minute ...
294
Keep in mind that no control is indefinitely set and players can change their controls through GTA. So KEY_SECONDARY_ATTACK does not have to refer to F and Enter as you said; it could be Q and H if th...
175
Quote:
Originally Posted by coole210
That does not answer my question at all!
That's true but you really ought to be searching for this...it's definitely on the forum.
348
Did you make those up? This is what they should be:
Код:
public OnVehicleMod(playerid,vehicleid, componentid)
public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
public OnVehicleRespray(p...
289
Код:
public OnPlayerSpawn(playerid)
{
if(GetPlayerSkin(playerid) != id of skin)
{
for(new j = 0; j < MAX_VEHICLES; j++)
{
if(GetVehicleModel(j) =...
294
Try what Miokie said. And you can't have two gametexts at one time. Maybe fiddle with the styles?
403
I think there's a limit to how much text you can display in a GameText. You'll need to shorten the string.
403
Quote:
Originally Posted by laser50
hi, i`ve asked this b4 and nobody really know what i was wanting.
i will explain what i need:
I need Something witch will lock doors of a car (so not en...
294
Quote:
Originally Posted by laser50
i dont know really but go to pawno and then Includes, wright down all the names and place them into the Script.
that must get mutch problems gone i hope...
289
Sorry MAX_PLAYERS was meant to be MAX_VEHICLES...so use this:
Код:
for(carid=0;carid<MAX_VEHICLES;carid++)
SetVehicleParamsForPlayer(carid,playerid,0,1);
473
Did you not read what I said? Completely get rid of
Код:
new carid;
for(carid=0;carid<MAX_PLAYERS;carid++)
SetVehicleParamsForPlayer(carid,playerid,0,1);
and get rid of "carid = " from the...
473
You keep asking the same questions over and over again, and making the same mistakes repeatedly...just look through your code and you'll realise that your { and } are non-existent or misplaced.
If c...
1,755
Don't make new threads for this. There's a script request thread, post in there and maybe you'll be lucky enough to find someone who'll give it to you.
164
You're adding this to the wrong place:
Код:
new carid;
new i;
for (i=0;i<MAX_PLAYERS;i++)
if (i!=playerid) SetVehicleParamsForPlayer(carid,i,0,1);
Add this:
Код:
for(carid=0;carid<M...
473
Change this:
Код:
SendClientMessage(playerid,0xAA3333AA,"/cuff ID /arrest ID /fine ID /rp ID");
else if
SendClientMessage(playerid,0xAA3333AA,"you are not a cop!");
to
Код:
SendClien...
1,755
Yeah change:
Код:
//ShowPlayerMarkers(false);
to
Код:
ShowPlayerMarkers(1);
508
Wherever it says playerid in that code, replace with i.
224