Search Results
As Towlies already stated, most servers have decent anti cheats and admin teams to control hackers. It's only servers that aren't very good or badly coded that have a lot of hackers.
268
An example using dcmd: Код: dcmd_ad( playerid, params[ ] ) { if( !strlen ( params ) ) return SendClientMessage ( playerid, 0xFFFFFFAA, "Syntax: /ad [advertisement]" ); if( strlen( param...
198
The Unreachable code warning is usually a result of bad indention. It means you have 'finished' coding in a callback / function by returning a value, breaking a loop, etc. and then continued to add co...
68
I don't understand what your point is. SAMP has lots of different gamemodes and scripts, so you need to be a little more specific.
94
I recall seeing one or two in the script showroom. Try having a search around.
224
If you disconnect whilst a sound is playing, a horrible noise will occur. It can be fixed externally by using the audio stop native, but it would be nice if it was fixed internally too. I'm writing ...
38,428
Quote: Originally Posted by Vetle GetTickCount() = Windows only. tickcount() = Windows and Linux. on linux GetTickCount() returns an negative number. What Linux version is that on? I'v...
544
GetTickCount works fine on Linux for me. I don't know if anyone else has problems though.
544
I might make a little gamemode out of this, one in the style of what is normally found on the Mini-Missions server. Nice work.
320
I can see a few bugs from a quick glance at the code. For example, if player ID 0 is editing an object, and player ID 1 starts editing an object, both players objects will parse because your storing t...
1,625
Check out the LS parachute mode with the server package.
194
Quote: Originally Posted by Luxeon Quote: Originally Posted by ShadowMcFartPants! the americain flag? wtf is that all about.. English is ENGLISH!! from ENGLAND!! This isn't...
225
Quote: Originally Posted by scorp1543 If you have modded your case in any way, This could be why, Most cases you buy with the two Mic/Headset Jacks are completely Crap, either replace them...
152
Quote: Originally Posted by иєσz There are some things. Код: new sendername[MAX_PLAYER_NAME], giveplayer[MAX_PLAYER_NAME], giveplayerid, playermoney, string[128], moneys; coul...
153
Why use a timer? Код: public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid) { if(newinteriorid == 0) { SetPlayerTeam(playerid, NO_TEAM); }else if (oldinteriorid == 0) ...
220
Heres my version. Much better and faster. Код: ShutdownServer() { SendRconCommand("exit"); }
540