Search Results
Well, I tried to Attach3DTextLabelToVehicle when any player does /ac and Delete the label with /unac, but it seems that I did something wrong as the text would always appear as "-1", even when I do /u...
68
Quote: Originally Posted by Vince For an empty box, use an underscore for text. Use the BoxSize native to adjust the width. Use the LetterSize native to adjust the height. Alternatively, y...
62
Hello...So I've been wondering about how can I Make a large textdraw like this: Or a small one like this: I Just want to know how to adjust their sizes and the background color.
62
Define this on top of your script: pawn Код: #define  DIALOG_CHOOSINGWHEELS  (1200) pawn Код: else if(dialogid == 9) // Mechanic    {        if(response)        {           ...
98
Quote: Originally Posted by dirigent00 After the bracket of the last one else, add return 1; Try this: Код: forward BreakVehicleLock(playerid, vehicleid, ownerid, carslot, family); p...
141
Quote: Originally Posted by Robert515 When I added this, this comes up: Код: House.pwn(1167) : error 001: expected token: ";", but found ")" Can you show us line 1167?
157
Try this: pawn Код: stock IsPlayerAAdmin(playerid){    if(PlayerInfo[playerid][pAdmin] >= 4)        return 1;    else        return 0;}
120
Quote: Originally Posted by SlimDkhili show us where did you defined Copcar3DText pawn Код: new Text3D:Copcar3DText;
214
Hello. So I've been trying to attach a Label Text to the LEO's when they do /assigncar. When the LEO's do /assigncar it creates a labeltext at the back of the car with his callsign and badge number, b...
214
Quote: Originally Posted by DaTa[X] show this stock !! ( SendHelperMessage(COLOR_NEWBIE,string); ) Here it is: pawn Код: public SendHelperMessage(color, string[]){    foreach(Play...
161
Well...I edited the /newb command to be like this: pawn Код: CMD:newb(playerid, params[]){    if(gPlayerLogged{playerid} == 0)    {        SendClientMessageEx(playerid, COLOR_GREY, "You're...
161
Thanks ,It worked ++ Repped you guys both
68
Well...Whenever the taxi driver does /accepttaxi it keeps saying that he isn't a taxi driver...I Don't know why actually i've tried over and over to fix it but still --_-- The CMD: pawn Код: CMD:a...
68
Quote: Originally Posted by Threshold https://sampwiki.blast.hk/wiki/OnPlayerStateChange pawn Код: public OnPlayerStateChange(playerid, newstate, oldstate){    if(newstate & PLA...
112
Quote: Originally Posted by [WSF]ThA_Devil Firstly, get vehicle id: then: pawn Код: foreach(new i : Player) {if(GetPlayerVehicleID(i) == vehicle) {new string[77]; //I changed to 77 slo...
112
Well...It's working thanks but it sends the message twice Like: Код: Passenger %s Entered the taxi with fare %d Passenger %s Entered the taxi with fare %d
112
Well ,I've been trying to Make a code for OnPlayerEnterVehicle for the taxi drivers which shows the Passenger's name when he enters the taxi. Well ,this is the code which I made pawn Код: if(IsAnT...
112