06.09.2016, 23:10
Are you sure?
http://imgur.com/a/yO9oI
pawn Код:
// ** INCLUDES
#include <a_samp>
#include <zcmd>
// ** MAIN
main()
{
print("Loaded \"blank.amx\".");
}
// ** CALLBACKS
public OnGameModeInit()
{
return 1;
}
public OnGameModeExit()
{
return 1;
}
// ** COMMANDS
CMD:melee(playerid)
{
GivePlayerWeapon(playerid, WEAPON_KATANA, 1);
return 1;
}
CMD:remove(playerid)
{
ResetPlayerWeapons(playerid);
return 1;
}

