Search Results
Quote: Originally Posted by IllidanS4 The problem is that you are so used to seeing the game wrong that you cannot get accustomed to how it should properly look. Frankly, I am disgusted b...
36,288
I dont know a whole lot about aspect ratio / resolutions enough to explain this properly. Turning Widescreen on in the settings makes the whole screen look wierd, I want to play with it off, and when...
36,288
Quote: Originally Posted by dugi You should post some screenshots with your issues. It looks worse ingame.
36,288
Quote: Originally Posted by cdoubleoper It won't affect you if you don't use wide resolution. My resolution is 1920x1080, and it does. Quote: Originally Posted by Romz calm...
36,288
Quote: The radar outline should now scale properly in widescreen resolutions. Did you change the crosshair aswell? Whenever I shoot a gun, the crosshair looks oval, instead of rou...
36,288
Quote: Originally Posted by Whatname it should in 0.3.7 work maybe the url is invalid Yeah, the converter the FS uses (www.youtube-mp3.org) doesnt work anymore. Here's an include by Da...
323
If you return 0 under OnPlayerRequestClass, it wont spawn the player. So you could do: PHP код: public OnPlayerRequestClass(playerid, classid) {     if(IsPlayerLoggedIn(playerid) == tr...
169
Quote: Originally Posted by RoX123 To put it under OnPlayerRequestClass or Under OnDialogResponse, i tryed it to both but "DelayedSpawn" is undefined You have to place the PHP код: ...
169
The Youtube Player FilterScript you are trying to run doesn't work in 0.3.7.
323
Hi. You could add the SpawnPlayer function to OnDialogResponse if the login/register was successful, (I do it with a delay as seen below) and you could also add it to OnPlayerRequestClass(add a check ...
169
Hi. None of the callbacks in my npcmode are being called PHP код: ConnectNPC("testbot", "test");  PHP код:  // In /npcmodes/test.pwn (.amx) public OnNPCSpawn() // <--...
43
Will this be reuploaded? Would be extremely convenient to have this.
909
PHP Code: if( RandomPercentage(25) ) SCM(playerid, -1, "You won!");  PHP Code: stock RandomPercentage(percentage) {     if(percentage >= random(101) ) return true;  Â...
71,301
Quote: Originally Posted by Jefff Its ok, problem can be in DB_Escape only, you dont need DB_Escape() anymore read info https://sampwiki.blast.hk/wiki/Escaping_Strings_SQLite %q in format...
153
Here it is: PHP код: stock SavePlayerData(playerid) {     if(pLogged[playerid] == false) return 0;     new tick = tickcount();       format(Query,sizeof(Query),"UPDATE `...
153
Quote: Originally Posted by Jefff Remove COLLATE NOCASE, UserID should be primary auto_increment Ah, fixed, however it didnt decrease the time it takes for the query to save, though :/
153
Quote: Originally Posted by MarkNelson Hmm 20-2000? Ranges? 20-2000 milliseconds. How big the range of time is that it takes to perform the query.
153
Hi. for some reason SQLite takes a long time to perform queries. it's random, ranges from 20-2000 ms. The thing is everything else on the server is responsive and fast, its as if SQL is slacking behin...
153
PHP код: stock GetPlayerHealthArmour(playerid) {     new Float:total;           total += GetPlayerHealth(playerid);     total += GetPlayerArmour(playerid);     retur...
55,322
Quote: Originally Posted by Konstantinos It is not possible to select a row directly, you will have to use db_next_row function. If you know that the limit is 25, then an array with that s...
108