Search Results
Quote: Originally Posted by Fj0rtizFredde Do you have Skype open? Apache & Skype both run on port 80. Building of this person's response, you can check to see all the programs that...
149
Solved. Server issue caused by plugin.
87
With Windows 7 SP1: If I run my SA-MP client and connect to a server I am unable to connect. Sometimes it will connect and will see "Server closed connection." right away, and other times I'll see "Co...
87
How are you listing your plugins in the Linux install? should be like xxx.so xxx.so etc. I should note that linux will be case sensitive also.
106
Have you tried putting it in compatibility mode for windows 98/windows me? This is what works best for me.
86
SA-MP's color embedding doesn't seem to be the issue here. I removed that and the error still persists. So I'd assume it to be a wine bug then.
99
Same thing happens, I have tried it before. When a \r character, it is recognized as a unknown character also.
99
I am running the latest version of Debian along with the latest Wine. When I am playing SA-MP with dialogs, '\n' do not display correctly. They appear as a unknown character as shown. How do I go abou...
99
From that PDF Document, Warning/Error 218... Код: When using "option semicolons", it is preferred to explicitly declare forward function with the forward keyword than using terminating semicolons....
125
I am running the latest stable Debian version. Though gedit I am trying to run the pawn compiler. The gedit console thing outputs... Код: Running tool: Pawn Compile Z:\home\austin\Country-RP\pawn...
125
Quote: Originally Posted by ikey07 I dont see it much easier then usualy mysql_query, all I see is more , and " " typing thats all, also use shorter function names, rename them to QB_Updat...
456
When you open a file you need to rewrite the entire file pretty much since if you were just to append the varible to the file then it would take longer and longer to read a file. Take a look at my old...
112
This would be the code stripped of the messages... pawn Код: for(new playerid; playerid < MAX_PLAYERS; playerid++){    if(IsPlayerConnected(playerid))    {        new Float:health;   ...
241
Hmm... I am not sure why. I haven't really used the http functions in pawn before so I am not 100% sure about them. I know at one point I had a script and my php page echoed out a line to the console ...
232
This loop should be placed under a timer of your choice. pawn Код: for(new playerid; playerid < MAX_PLAYERS; playerid++){    if(IsPlayerConnected(playerid))    {        new Float:health,...
241
Well your `new string[255];` needs to be moved down to after the line with `{` EDIT: You got more issues then just that. The way you do everything in the snippet of code is pretty much wrong.
241
What is shown in the web browser is the value of data[]. If you write click a page and do view source that is what data[] will be, from what I understand. Taking this into effect if you are going to u...
232
Your welcome, I didn't want to tell you how to do it in great detail since that would ruin the fun of learning & scripting it
232
You can not remove objects in OnFilterscriptInit and you wouldn't want to create objects in OnPlayerConnect since that would create multiple of the same objects. Also the remove objects should interfe...
195