01.06.2009, 12:27
hi i need help what did i wrong?
if i go into the server and i go in a sultan and i type /sultan it doesnt nothing waht i did wrong plzz help
P.S sorry my english is bad
pawn Код:
#include <a_samp>
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#define COLOR_PURPLE
#if defined FILTERSCRIPT
public OnFilterScriptInit()
{
} print("\n--------------------------------------");
print(" Tune Youre Car Filterscript by 3lm0" );
print("--------------------------------------\n");
return 1;
}
public OnFilterScriptExit()
{
return 1;
}
#else
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp(cmdtext, "/elegy", true)==0)
{
AddVehicleComponent(562, 1010);
AddVehicleComponent(562, 1034);
AddVehicleComponent(562, 1036);
AddVehicleComponent(562, 1146);
AddVehicleComponent(562, 1149);
AddVehicleComponent(562, 1171);
ChangeVehiclePaintjob(562, 3);
ChangeVehicleColor(562, 6, 6);
return 1;
}
if (strcmp("/sultan", cmdtext, true, 10) == 0)
{
ChangeVehiclePaintjob(560, 3);
ChangeVehicleColor(560, 6, 6);
SetVehicleNumberPlate(560, "Future");
AddVehicleComponent(560, 1139);
AddVehicleComponent(560, 1169);
AddVehicleComponent(560, 1010);
AddVehicleComponent(560, 1141);
IsPlayerInVehicle(playerid, 560);
return 1;
}
return 0;
}
#endif
P.S sorry my english is bad