Search Results
Just show/create it after box. Now box is last, thats why its behind it.
263
Nobody knows what you mean by "loading maps". What are maps? Gamemodes? And show code if you want help.
265
You removed gta_sa.exe instead of gta_sa.set ? Lol.
204
Check my post in this topic for anti unfreeze: https://sampforum.blast.hk/showthread.php?tid=628714
182
Is that whole crashlog? I dont see error line.
204
Quote:
Originally Posted by MerryDeer
I have to write positive or negative procents?
Positive.
297
Sry, forgot.
Код:
stock Convert_HexToRGB(color, &r, &g, &b)
{
r = (color >> 24) & 0xFF;
g = (color >> 16) & 0xFF;
b = (color >> 8) & 0xFF;
}
st...
297
Код:
stock MakeColorLighter(color, percent)
{
new
r,
g,
b,
Float:percentage = (100 - percent) + 0.1;
Convert_HexToRGB(color, r, g, b);
r = floatround(r * percentage / 100) + flo...
297
Looks like your scripts adds Z position. Just remove +value or if not, use -value near Z pos.
142
Just rename it to drug_type, you are wasting a time. "Type" can be even declared in your includes.
188
You have to use setplayerpos after end of first animation. No other way, setplayerskin will always refresh animation.
376
Код:
if(dialogid == DIALOG_RADIO)
{
if(!response) return 1;
switch(listitem)
{
case 0:
{
PlayAudioStreamForPlayer(playerid, "http://*******inmp3.com/fetch/?video=https://www.youtub...
184
Код:
function AddBan(playerid,targetid,days,reason[],ipban)
{
new bantime, unbantime;
new playerip[16];
if(days < 0) return 1;
if(days == 0)
{//perm
new bantime = gettime();
new unb...
211
Use unix timestamp instead of all this stuff.
Quote:
year,
month,
day,
hour,
nyear,
nmonth,
nday,
hour,
days);
211
Also create file in your pawno directory named:
Quote:
pawn.cfg
with content:
Quote:
-d3
After that recompile gamemode. It will show you more details about ...
1,105
Are you using TogglePlayerSpectating?
334
Non sense. If someone want cheat, he will download standard samp.
1,742