Search Results
Put some boolean as isSenadmin = true / false; then and check it with if .its simple
172
Check that you add pInfo[playerid][Scores]+=1 on robbing function.
191
Why can't you try this Код: #define COL_WHITE "{FFFFFF}" // new Lstr[128]; format(Lstr,128,"%sType your password to login.",COL_WHITE); ShowPlayerDialog(playerid, DIALOG_LOGIN, DIALOG_STYLE_INPUT,...
229
try this pawn Код: new str[400];new Fstr[128];for(new x = 0; x < sizeof ( Interiors ); x++)              {         format(Fstr,128,"%s\n",Interiors[ x ][ iName ]);        strcat...
209
[Tut]https://sampwiki.blast.hk/wiki/PlayAudioStreamForPlayer
301
here i will explain pawn Код: Gate = CreateObject(985, 10.0, 10.0, 10.0, 0.0000, 0.0000, 90.0000);//you should move object MoveObject(Gate,10.0,20.0,10.0,2.0);//only y value was changed
203
did you use any thing like move object to x and also to y like this pawn Код: MoveObject(obj, 10, 10, 0, 2.00);//so it move both x and y and in visual it rotates..
203
you are using dini so save like this pawn Код: dini_IntSet(file, "weaponslot1", weapons[0][0]);dini_IntSet(file, "weaponslot1_ammo", weapons[0][1]);dini_IntSet(file, "weaponslot2", weapons[1][0])...
230
pawn Код: //on Commanddcmd(setrank, 7, cmdtext);dcmd_setrank(playerid, params[]){        new rankname[32];    if (strlen(params))    {        sscanf(params, "s", rankname)        i...
247
pawn Код: SetPlayerAttachedObject(playerid, 6, 18865, 6, 0.120000, 0.040000, -0.003500, 0, 100, 100, 1.4, 1.4, 1.4);if(IsPlayerAttachedObjectSlotUsed(playerid, 6)) RemovePlayerAttachedObject(playe...
156
use virtual world SetPlayerVirtualWorld(playerid,1);//here you can place it up to 100 or above and for outside SetPlayerVirtualWorld(playerid,-1);//this for common or use 0
156
pawn Код: public Count(playerid){    if(!IsCountActive){        KillTimer(CountTimer);    }else{        new Float:x, Float:y, Float:z;        GetPlayerPos(playerid, x, y, z);    ...
131
place the count-- above the loop
131
pawn Код: public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[]){if(response)// They pressed the first button.     {    switch(dialogid)// If you only have one dialog, th...
233
Sorry for My bad engilsh..Text of jobs means List of JOBs as like i posted pizza boy and so on.. all i need is jobs with description and suitable levels..so i can make the script bigger
358
Can you give any ideas to improve the job levels i need just the text of jobs like i posted above
358
pawn Код: new phone = SetPlayerAttachedObject(playerid, 6, 18865, 6, 0.120000, 0.040000, -0.003500, 0, 100, 100, 1.4, 1.4, 1.4);if(IsPlayerAttachedObjectSlotUsed(playerid, 6)) RemovePlayerAttached...
156
pawn Код: ///Arrest System --forward JailTimer(playerid);public JailTimer(playerid){    SendClientMessage(playerid,0xFFFFFF,"You are Released be a good citizen");    SetPlayerInterior(playerid...
331
try this use SetVehicleZAngle(vehicleid,0);// so it resets to 0 angle which on spawn the vehicle and then use SetVehicleZAngle(vehicleid,VehInfo[vehicleid][vAngle]);//so that if of 45 then it will be...
155