Search Results
MySQL - http://en.wikipedia.org/wiki/MySQL ZCMD - https://sampforum.blast.hk/showthread.php?tid=91354 UCP - User Control Panel
76
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.
75
Код: new State = GetPlayerState(playerid); new cartype = GetPlayerVehicleID(playerid); Before SetPlayerInterior(playerid,0);.
66
That definition is wrong, should be a query string, something like that: Код: #define _THREAD_SAVE_PLAYER "UPDATE players SET ..."
200
Код: if(playerid,pRank = < 4; Shoud be something like that: Код: if(pRank[playerid] >= 4) //Rest of code.
92
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)
74
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.
62
Well, I'm gonna to use cache, thanks guys.
67
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?
67
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...
71
Sure, but what is price? Player need to give price to pay, I think it's little stupid.
93
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?
129
No, nobody did working vehicle streamer and it just don't work, you can't have > 2000 vehicles.
54
I never saw problem like that, show server.cfg.
69
Something wrong with callback OnPlayerStateChange and OnPlayerKeyStateChange in script enrp.amx.
54
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...
87
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)); ...
82