Search Results
Thanks Raweresh, that's exactly it.
111
Hi all,
I have a players table inside sqlite with the column id - PK NN AI.
I use db_get_field_assoc() to get the id value using my query result variable and set it to my players variable, like so:...
111
Quote:
Originally Posted by davidstyle1125
Hello, Could you guys explain what is the diffrences between "Return False" and "Return Right"...
Or you if got good tutorial about that.. please...
179
Quote:
Originally Posted by Dusan01
Hi guys, it is possible to make in pawno to get data from web about temparature in my city?
i have www.mysite.com/temparature.php and it look like this:...
109
Great tutorial Macluawn,
It works with Sublime Text 3 too.
3,743
Quote:
Originally Posted by BroZeus
https://sampforum.blast.hk/showthread.php?tid=113394
That solved my problem, thanks a lot.
222
Quote:
Originally Posted by Derexi
I appreciate your help, but this isn't what I'm looking for. I've already made a system that counts and saves players' online time in seconds. I now want...
199
Hello Derexi,
You could create a column named connected_time (integer) (default to 0) inside your players table and save the data in seconds,
OnPlayerConnect you get the current time and set it to y...
199
fasdfasd you need to change your translator
165
Hello Dark_Fener,
I don't think you got my problem, I want to show my custom view (using SetCamera functions) but I want to hide the spawn buttons too and the only way is to set the player to spectat...
222
Hello LeXuZ,
You could use the GetPlayerState https://sampwiki.blast.hk/wiki/Playerstates function.
Quote:
new playerState = GetPlayerState(i);
if(playerState != PLAYER_STATE_NONE)
{
...
224
Hello again, use the GetPlayerIp(playerid, name[], len) https://sampwiki.blast.hk/wiki/GetPlayerIp to get the ip address from a player. The second parameter is the variable name where to store the pla...
175
Hello guys,
I want to hide the spawn buttons while the player is under the Login dialog, with a little search I found out the TogglePlayerSpectating(playerid, toggle) function, so I put it under the ...
222
Hello kampuman, as long as I know you need to use the format() function to format the string before pass it to the ShowPlayerDialog function, example:
new string[128];
format(string, sizeof(string),...
175
I think i have the same problem here; I can successfully use these two functions (SetPlayerCameraPos and SetPlayerComeraLookAt) to generate the view I want, but whenever i use the function TogglePlaye...
173