- เครดิต
- 59
- ความรู้
-
- เงิน $
-
- ความดี
-
|
ผมจะทำให้ใช้ได้ทุกคนทำยังไงหรอครับ
//Delete Cars FS By aizeah555 PLEASE DONT REMOVE CREDITS
#include <a_samp>
#define R 0xAA3333AA
#define COLOR_RED 0xff0000a7
public OnFilterScriptInit()
{
print("\n-----------------------------------------");
print("Delete Cars fs by aizeah555");
print("-------------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
public OnPlayerConnect(playerid)
{
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if( strcmp( cmdtext, "/deletecars", true ) == 0 )
{
if(!IsPlayerAdmin(playerid))
{
SendClientMessage(playerid,0xFF0000AA,"You can't use this command.");
return 1;
}
for( new veh; veh < MAX_VEHICLES; veh ++ )
{
if ( veh != INVALID_VEHICLE_ID )
{
DestroyVehicle( veh );
}
}
return 1;
}
return 0;
} |
|