Search Results
My opinion might not matter much because to this day I haven't really finished building a script and run a server with players, but let me put my two cents here anyway. After working on a project for...
116,854
Could it be that you accidentally swapped VW and Interior in your checks? (Me, shamelessly assuming that IW means something like 'interior world', VW 'virtual world'); Code: HouseInfo[rand][hExtIW] ...
119
Quote: Originally Posted by ImTobi Code: CMD:pdht(playerid, params[]) { if(eingeloggt[playerid] == 0)return SendClientMessage(playerid, COLOR_RED, "Du bist noch nicht eingeloggt."); if(...
226
Technically this if statement will trigger when your faction is not 1 and when it's not 4. The thing is, when faction is equal to 1, it is not equal to 4, which causes the if statement to trigger. Sam...
226
I've had these things before. Someone pointed out that adding (if memory serves right) PlayerTextDrawTextSize() for the selectable draws takes care of it, if using the right sizes. Your clickable draw...
107
That's because this variable won't have two values at the same time. In other words, the two conditions will never be met at the same time. That means that one of your conditions will always trigger.
226
It's nice to see that this thread is actually turning into a proper discussion at this point. In my humble opinion, if this forum is indeed meant to be a scripter/server owner type of forum, then I gu...
9,719
You still work with the same SA-MP natives, so the data you can collect through code is still the same as before as far as I'm aware.
565
Quote: Originally Posted by KinderClans Useless. Care to elaborate? I'm 'porting' my existing script (PAWN) to C# using SampSharp at the moment. As someone who works with C# on a dail...
565
Are you referring to that drone-like thing in front of you? A simple web search led me to a thread here on the forum, someone offered a theory on how to do it. This is, if you're on 0.3DL. Full threa...
110
The way I tackled this was creating those fire objects inside a Streamer area. Then when a player is in a fire truck and presses the shoot button, I used the IsLineInDynamicArea function to see if the...
228
There's a lot going on in the accept command. To make debugging a little easier, you might want to use the CrashDetect (GitHub Repo) plugin. This will most likely give a more detailed picture of what'...
81
You could start by posting the code that's supposed to save this data. How else are we supposed to help you resolve the issue?
88
Quote: Originally Posted by zenakung Sorry, I do not understand what you say. I need to find out from where. The piece of code that executes the query, the thing that send data to the d...
125
Can you post the query code? You might have missed a ` or ' somewhere, or maybe made a different mistake in the syntax somewhere.
125
Can post the server log? Only of the last session would suffice (between [code] tags or on Pastebin for readability). Maybe the plugin doesn't load correctly.
121
Do you have a /createveh command already? If so, please post what you have so far. Then I'll be able to give you specific advice.
169
4th integer of what? Do you have an array of variables from which to read?
169
With 'replace with with CreateObject' I also meant to include, that you should strip the last 2 parameters to keep only the CreateObject parameters. I understand that this isn't really optimal, so I'l...
110