bj
This commit is contained in:
parent
f17da0fb12
commit
982986fb9b
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -28,15 +28,30 @@
|
||||
#define GetPlayerFPS(%1) p_FPS[%1]
|
||||
|
||||
// Client messages
|
||||
#define SendUsage(%0,%1)\
|
||||
#define SendUsage(%0,%1) \
|
||||
(SendClientMessageFormatted(%0,-1,"{FFAF00}[USAGE]{FFFFFF} " # %1))
|
||||
|
||||
#define SendError(%0,%1)\
|
||||
#define SendError(%0,%1) \
|
||||
(SendClientMessageFormatted(%0,-1,"{F81414}[ERROR]{FFFFFF} " # %1))
|
||||
|
||||
#define SendServerMessage(%0,%1)\
|
||||
#define SendServerMessage(%0,%1) \
|
||||
(SendClientMessageFormatted(%0,-1,"{C0C0C0}[SERVER]{FFFFFF} " # %1))
|
||||
|
||||
|
||||
stock SendClientMessageFormatted( playerid, colour, format[ ], va_args<> )
|
||||
{
|
||||
static
|
||||
out[ 144 ];
|
||||
|
||||
va_format( out, sizeof( out ), format, va_start<3> );
|
||||
|
||||
if ( !IsPlayerConnected( playerid ) ) {
|
||||
SendClientMessageToAll( colour, out );
|
||||
return 0;
|
||||
}
|
||||
return SendClientMessage( playerid, colour, out );
|
||||
}
|
||||
|
||||
/* ** RADIO SYSTEM ** */
|
||||
enum E_RADIO_DATA
|
||||
{
|
||||
@ -122,7 +137,7 @@ public OnRconLoginAttempt(ip[], password[], success)
|
||||
SendClientMessageFormatted( playerid, -1, "{FF0000}[ERROR]{FFFFFF} You have entered an invalid rcon password. {C0C0C0}[%d/2]", p_RconLoginFails{ playerid } );
|
||||
|
||||
if( p_RconLoginFails{ playerid } >= 2 ) {
|
||||
SendServerMessage( playerid, "If you are not the server operator or manager, don't bother trying!" );
|
||||
SendClientMessageFormatted( playerid, -1, "{C0C0C0}[SERVER]{FFFFFF} If you are not the server operator or manager, don't bother trying!" );
|
||||
Kick( playerid );
|
||||
}
|
||||
}
|
||||
@ -281,5 +296,4 @@ stock GetRangeIP( szIP[ ], iSize = sizeof( szIP ) )
|
||||
}
|
||||
}
|
||||
format( szIP, iSize, "%s.*.*", szIP );
|
||||
return szIP;
|
||||
}
|
||||
|
File diff suppressed because it is too large
Load Diff
232
pawno/old_shit/new.pwn
Normal file
232
pawno/old_shit/new.pwn
Normal file
@ -0,0 +1,232 @@
|
||||
// This is a comment
|
||||
// uncomment the line below if you want to write a filterscript
|
||||
//#define FILTERSCRIPT
|
||||
|
||||
#include <a_samp>
|
||||
|
||||
#if defined FILTERSCRIPT
|
||||
|
||||
public OnFilterScriptInit()
|
||||
{
|
||||
print("\n--------------------------------------");
|
||||
print(" Blank Filterscript by your name here");
|
||||
print("--------------------------------------\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnFilterScriptExit()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
main()
|
||||
{
|
||||
print("\n----------------------------------");
|
||||
print(" Blank Gamemode by your name here");
|
||||
print("----------------------------------\n");
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
public OnGameModeInit()
|
||||
{
|
||||
// Don't use these lines if it's a filterscript
|
||||
SetGameModeText("Blank Script");
|
||||
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnGameModeExit()
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerRequestClass(playerid, classid)
|
||||
{
|
||||
SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
|
||||
SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
|
||||
SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerConnect(playerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerDisconnect(playerid, reason)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerSpawn(playerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerDeath(playerid, killerid, reason)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnVehicleSpawn(vehicleid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnVehicleDeath(vehicleid, killerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerText(playerid, text[])
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerCommandText(playerid, cmdtext[])
|
||||
{
|
||||
if (strcmp("/mycommand", cmdtext, true, 10) == 0)
|
||||
{
|
||||
// Do something here
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerExitVehicle(playerid, vehicleid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerStateChange(playerid, newstate, oldstate)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerEnterCheckpoint(playerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerLeaveCheckpoint(playerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerEnterRaceCheckpoint(playerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerLeaveRaceCheckpoint(playerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnRconCommand(cmd[])
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerRequestSpawn(playerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnObjectMoved(objectid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerObjectMoved(playerid, objectid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerPickUpPickup(playerid, pickupid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnVehicleMod(playerid, vehicleid, componentid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnVehiclePaintjob(playerid, vehicleid, paintjobid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnVehicleRespray(playerid, vehicleid, color1, color2)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerSelectedMenuRow(playerid, row)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerExitedMenu(playerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerInteriorChange(playerid, newinteriorid, oldinteriorid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerKeyStateChange(playerid, newkeys, oldkeys)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnRconLoginAttempt(ip[], password[], success)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerUpdate(playerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerStreamIn(playerid, forplayerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerStreamOut(playerid, forplayerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnVehicleStreamIn(vehicleid, forplayerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnVehicleStreamOut(vehicleid, forplayerid)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
|
||||
public OnPlayerClickPlayer(playerid, clickedplayerid, source)
|
||||
{
|
||||
return 1;
|
||||
}
|
BIN
pawno/old_shit/pawn.ico
Normal file
BIN
pawno/old_shit/pawn.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.3 KiB |
17
pawno/old_shit/settings.ini
Normal file
17
pawno/old_shit/settings.ini
Normal file
@ -0,0 +1,17 @@
|
||||
[General]
|
||||
FileAssoc=1
|
||||
[Display]
|
||||
WindowMax=1
|
||||
WindowX=557
|
||||
WindowY=268
|
||||
WindowW=790
|
||||
WindowH=485
|
||||
Splitter=339
|
||||
Font_Name=Courier New
|
||||
Font_Size=10
|
||||
ShowFuncList=1
|
||||
[RunOpts]
|
||||
CopyDir=\
|
||||
ExeFile=pawncc.exe
|
||||
Params=-r -w 203
|
||||
|
@ -4,8 +4,8 @@ rcon_password lo
|
||||
maxplayers 325
|
||||
port 7777
|
||||
hostname » Call of Duty For SA-MP (0.3.7) «
|
||||
gamemode0 blank 1
|
||||
filterscripts TextEditor blackjack
|
||||
gamemode0 sf-cnr 1
|
||||
filterscripts TextEditor poker
|
||||
announce 0
|
||||
query 1
|
||||
weburl www.sa-mp.com
|
||||
@ -14,7 +14,7 @@ incar_rate 40
|
||||
weapon_rate 40
|
||||
stream_distance 300.0
|
||||
stream_rate 1000
|
||||
plugins mysql crashdetect sscanf streamer Whirlpool regex gvar FileManager profiler FCNPC mapandreas RouteConnectorPlugin sampac discord-connector
|
||||
plugins mysql crashdetect sscanf streamer Whirlpool regex gvar FileManager profiler FCNPC mapandreas RouteConnectorPlugin sampac
|
||||
maxnpc 200
|
||||
logtimeformat [%H:%M:%S]
|
||||
language All
|
||||
|
Loading…
Reference in New Issue
Block a user