Search Results
what about colors like ~triangle~ that isn't a real choice but once upon a time gave fun results.
489
https://sampforum.blast.hk/showthread.php?tid=187229
289
Yes there is but it is essentially re-inventing the wheel. It involves many variables OnPlayerUpdate (Or another fast ticking function) and GetTickCount.
504
Not sure if time passes on its own.... pawn Код: new KeepNight = 1;OnGameModeInit(){    SetNight();}forward SetNight();public SetNight(){    SetWorldTime(0);    if (KeepNight)    {     ...
855
It seems as though you are reading from scriptfiles and writing to mysql.
386
Quote: Originally Posted by Steven82 Do not post server ip's in this section. It's considered advertising. No it isn't. It was perfectly relevant to the topic of this thread. But yes s...
855
will IsPlayerVipType return true if you ask for level 1 and he is level 3? If so then the only way I could improve it would be changing the "Flips You Car" to "Flips Your Car"
877
Quote: Originally Posted by Nero_3D Than what about Karl_II_the_Bald Hope you get what I mean Then change it to 4, or MAX_PLAYER_NAME/2 for all I care.
686
Quote: Originally Posted by PrawkC change new vehhealth = GetVehicleHealth(vehicleid, health); to GetVehicleHealth(vehicleid, health); https://sampwiki.blast.hk/wiki/GetVehicleHealth ...
601
Quote: Originally Posted by Nero_3D Yeah that is one of the main problems of the split function Or I could just change namepart to be 3 slots big, and change my if to be larger than 3.
686
Boom, Roasted. pawn Код: stock GetPartOfName(playerid, part){    new        namepart[2][MAX_PLAYER_NAME],        PlayerName[MAX_PLAYER_NAME];    if (part > 2 || part < 1) return ...
686
What is SPAWN_Stat and where does it get set?
584
Why not just do C = A + B; No function, No DEFINE.
1,141
Just move your command into OnDialogResponse and change params to inputtext. I hope you will be able to do more than I just said or it will error the crap out of you.
1,007
Quote: Originally Posted by Basicz with Strcmp ( slow command processor ) First, strcmp is not a command processor, it simply compares two strings and returns 0 if they are equal or re...
742
pass them by reference as arguments, so say I want to return the variables a and b depending on what c is I would do pawn Код: RandomFunction(&a, &b, c){    a = c - 3;    b = c - 7;  ...
597
Well, since you are complaining about not getting your questions answered I will do this for you: post those lines that have errors, with each line commented with its number. (You should make this a ...
465