Search Results
For question 1: pawn Код: public OnGameModeInit(){    ShowPlayerMarkers(0);    return 1;}
67
For first command: pawn Код: YCMD:buyhouse(playerid, o[], help){    if(help) return SendClientMessage(playerid, -1, "Buyhouse help");    if(!isnull(o)) return 0;    if(HouseOwner[playerid] =...
88
pawn Код: new AirlineCount;stock AirlinePath(Airlineid){    new iStr[256];    format(iStr,sizeof(iStr),AIRLINEPATH,Airlineid);    AirlineCount++;    return iStr;}
173
pawn Код: format(iStr,sizeof(iStr),AIRLINEPATH,Airlineid);
173
pawn Код: forward SaveSuggestion(string[]); // forward our functionpublic SaveSuggestion(string[]){    new entry[200]; // declare the variable entry with a 200 array size    format(entry, size...
81
Well, you select Airlineid as a parameter of your stock but you never use it.
173
https://sampforum.blast.hk/showthread.php?tid=151633
103
Follow this tut: https://sampforum.blast.hk/showthread.php?tid=273088
140
You didn't declared the string. new string[ 128 ];
132
1. new tmp[ 128 ]; 2. pawn Код: strtok(const string[], &index){    new length = strlen(string);    while ((index < length) && (string[index] <= ' '))    {        index+...
132
pawn Код: CMD:report(playerid,params[]){    new string[128], id, reason[35];    if(sscanf(params,"us[35]",id,reason)) return SendClientMessage(playerid,COLOR_GRAY,"SYNTAX: /report [id] [reason...
147
Oh c'mon, and the line please.
149
You don't need sscanf. pawn Код: CMD:ooc(playerid, params[]){    new string[246];    if(isnull(params)) return SendClientMessage(playerid, COLOR_RED, "USE: /ooc [message]");    if(ooc == 0) r...
92
Код: Right Click on samp-server.exe Click on Properties And Check the box that says Run as Administrator Then Click Ok And your done it should work.
128
Quote: Originally Posted by DaRkAnGeL[NBK] someone mentioned y_ini ? any tuts on this? Yes, y_ini. https://sampforum.blast.hk/showthread.php?tid=273088 EDIT: Stigg was faster.
229
You don't even need to use sscanf. pawn Код: CMD:o(playerid, params[]) {    new string[128], pname[MAX_PLAYER_NAME];    if(OOC == false) return SendClientMessage(playerid, COLOR_GREY, "SERVER:...
93
pawn Код: stock SetStreamPos(playerid, x,y,z){    SetPlayerPos(playerid, x, y, z);} Too late cause: This forum requires that you wait 120 seconds between posts. Please try again in 86 seconds.
95
Quote: Originally Posted by mitosking Are you sure? The DOS will print "Number of vehicle models: 6" with your example. Comeone.
141