Search Results
http://dracoblue.net/download/dini-16/35/ Put in includes folder and put pawn Код: #include <Dini>//top of script. Just follow the tut.
264
NP. I was editing my script so I though I would edit some of it and post as I thought it was relevant.
361
pawn Код: public OnPlayerCommandText(playerid, cmdtext[]){  if(strcmp(cmdtext, "/enter", true, 6) == 0)    {    if(PlayerToPoint(1, playerid, 1462.7317,-1013.0073,26.8438)) // LS Bank Enter ...
96
pawn Код: if(!IsPlayerInVehicle(GetPlayerVehicleID(playerid)))//Seems wrong.if(IsPlayerInVehicle(playerid, VehicleID))//This is how I have seen it. Two parts playerid, vehicleid.if(!IsPlayerInVehi...
166
pawn Код: forward CreateRandomPickup();new RandomPickup;new Float:RandomSpawn[4][3] ={  {2211.2908,2472.7927,10.8203},//Leave the same for testing purposes saves you running around.  {2211.2908,...
361
pawn Код: public OnPlayerCommandText(playerid, cmdtext[]){  if (strcmp(cmdtext, "/enter", true)==0)//Just use enter/exit for commands as PlayerToPoint will know where you are.    {    if(Play...
150
pawn Код: //top of script after includes/defines etc.IsACop(playerid){  if (GetPlayerSkin(playerid) >= 280 && GetPlayerSkin(playerid) <= 286)    {       return 1;    }  els...
56
I hope you changed the code from above mate. Its wrong in many ways.
150
Quote: Originally Posted by vkmaster Auto Link Vehicle To Interior Never tested this but the concept seems fine.
174
http://forum.sa-mp.com/index.php?top...seen#msg195086
174
pawn Код: //After includes at top#define dcmd(%1,%2,%3) if ((strcmp((%3)[1], #%1, true, (%2)) == 0) && ((((%3)[(%2) + 1] == 0) && (dcmd_%1(playerid, "")))||(((%3)[(%2) + 1] == 32) ...
410
pawn Код: public OnPlayerCommandText(playerid, cmdtext[]){  dcmd(recruit, 7, cmdtext);  return 0;} I think this is what you mean.
410
https://sampwiki.blast.hk/wiki/SetTimerEx Where it says 1000 = 1 sec so 10000 = 10secs
361
pawn Код: #include <a_samp>//Leave this line below.#define dcmd(%1,%2,%3) if ((strcmp((%3)[1], #%1, true, (%2)) == 0) && ((((%3)[(%2) + 1] == 0) && (dcmd_%1(playerid, "")))||...
214
https://sampwiki.blast.hk/wiki/Interiors Go into one you want and too adjust position and get co-ordinates type /save. Then goto your GTA San Andreas folder you will see savedpositions.txt open that ...
214
All I can say is fix them. I never try to run my GM until any errors or warnings are resolved. So I never have any promblems. As I never have any problems thats as far as my knowledge goes unfortunate...
148
I at the moment only know of two things that stops a server loading GM. 1. No amx. 2. No game modes in server.cfg. Errors can stop the compiler producing a amx until they are resolved. So I would re...
148
Its in the wrong place and you are not using it correctly my young Jedi. Here http://forum.sa-mp.com/index.php?topic=87145.0
214
You need to sort out the errors. I compiled that and there are a few. The amx won't be produced till they are corrected that is why your server won't open.
148
Would be better mate if you posted the code you have.
335