Search Results
Instead of editting your post with a selfish 'solved.', write your problem and then your solution to it so if anyone encounters it in the search engine the solution would be here.
110
What exactly do you mean by 'singleplayer features'?
248
You're using the wrong record type. A record type is used for port 80 services (web apps). You need to use the SRV record type. Note that if you want it to be 'samp.your-domain.com' in the host field...
255
Quote: Originally Posted by MrMirvC Thanks but with Sandboxie the game goes in pause and i can't kill the player.. What's a good free host? There's one that everyone puts their logo in...
352
Underhost and qHoster seem to have these payment options available.
199
OnPlayerWeaponShot Please be aware that: "This callback is only called when lag compensation is enabled."
55
This forum isn't for requesting scripts to be made for you. You can either ask for a scripter at the request thread or if you wanna do it yourself, do it and when you stumble upon a problem you cannot...
52
Update your include and plugin, then re-compile.
94
It's freaking everywhere o.o Everyone is talking about it, but hey if it moves people out of their houses that's great IMO.
1,457
The photo is very blurry. Perhaps just copy and paste the error here.
93
Just add a possibility to look it up by name (or however you name the player's INI file). Add a check to see if the file exists or not, if it does then display the details by reading the file.
89
Okie dokie. Here are MySQL docs: http://dev.mysql.com/doc/refman/5.7/en/tutorial.html You can use the following MySQL tutorial: https://sampforum.blast.hk/showthread.php?tid=129183 Enjoy!
74
Make a 'flag' variable (1/0) which is initially a zero. Once something in the inventory is not 0, change the 'flag' variable's value to 1. At the end, before formatting all check if the flag is 0 and...
89
Don't you mean INI_Int / INI_String ? Read here: https://sampforum.blast.hk/showthread.php?tid=570957
204
Some pseudo-code of what I thought of: Code: #define MAX_DROPPED_ITEMS = 50 new lastDroppedItemIndex = 0 new droppedItems[MAX_DROPPED_ITEMS] function DropItem(item) { if lastDroppedItemIndex == 50 t...
82
What is the point of PInfo[playerid][hours]? Just use (gettime() - PInfo[playerid][ConnectTime]) to calculate how much time passed since the player has last connected. Save that value each time into ...
68
Quote: Originally Posted by cdoubleoper Okay. I got 3 NPCs and each has divided worldid (first one -1, the second one -2, third -3). Seems like it is working with 2 players, but I'm kind o...
129
Make a global variable playerIgnoreTeleports[MAX_PLAYERS]. Once that's done make commands to set it to 1 or 0. Once trying to goto to another player, check their playerIgnoreTeleports[targetPlayerid]...
74
What is the purpose of this section?: Код: (PInfo[playerid][hours]*60*60) + (PInfo[playerid][mins]*60) + (PInfo[playerid][secs]) You just need this code: Код: (gettime() - PInfo[playerid][Conn...
68
Why not use random() ? https://sampwiki.blast.hk/wiki/Random
75