Search Results
MySQL - http://en.wikipedia.org/wiki/MySQL
ZCMD - https://sampforum.blast.hk/showthread.php?tid=91354
UCP - User Control Panel
162
This warnings is when you want to set integer as float or something like that.
Код:
new Integer;
Integer = 1.0;
Or
Код:
new X,Y,Z;
GetPlayerPos(playerid,X,Y,Z);
Give that warning.
148
Код:
new State = GetPlayerState(playerid);
new cartype = GetPlayerVehicleID(playerid);
Before SetPlayerInterior(playerid,0);.
136
That definition is wrong, should be a query string, something like that:
Код:
#define _THREAD_SAVE_PLAYER "UPDATE players SET ..."
347
Show that definition _THREAD_SAVE_PLAYER.
347
Код:
if(playerid,pRank = < 4;
Shoud be something like that:
Код:
if(pRank[playerid] >= 4) //Rest of code.
176
Delete:
Код:
new getname = dini_get(File, "Owner");
And change:
Код:
if(strcmp(pln,getname,false) == 0)
To:
Код:
if(strcmp(pln,dini_Get(File, "Owner"),false) == 0)
137
I think you have old includes, DIALOG_STYLE_PASSWORD was added later, ShowPlayerDialog in 0.3a, but not with that dialog style. Just update includes.
139
Well, I'm gonna to use cache, thanks guys.
153
Hi, is here anyone who knows differences between orm and cache in newest MySQL R39-2? If yes, tell me please, what is that differences and which one is faster, orm or cache?
153
https://sampwiki.blast.hk/wiki/ApplyAnimation
Quote:
forcesync Set to 1 to make server sync the animation with all other players in streaming radius (optional). 2 works same as 1, but will...
155
Sure, but what is price? Player need to give price to pay, I think it's little stupid.
175
I don't know that script because I don't use it but there is color, background color and box color, what do you try to change?
245
No, nobody did working vehicle streamer and it just don't work, you can't have > 2000 vehicles.
120
I never saw problem like that, show server.cfg.
148
Something wrong with callback OnPlayerStateChange and OnPlayerKeyStateChange in script enrp.amx.
121
It should looks like this:
Код:
#include <a_samp>
public OnFilterScriptInit()
{
CreateObject(8172,697.0622559,-2481.8032227,0.8999997,0.0000000,0.0000000,0.0000000);
CreateObject(4573,583...
177
Just change color to 0x7851a9FF.
245
Do arrays with skins:
Код:
new Males[] =
{
0,1,...
};
new Females[] =
{
192,...
};
And change your code to:
Код:
if(PlayerInfo[playerid][pSex] == 1)
{
new rand = random(sizeof(Males));
...
158