911.pwn 457 B

1234567891011121314151617
  1. #include <a_samp>
  2. #include <zcmd>
  3. CMD:load911(playerid, params[])
  4. {
  5. if(GetPVarInt(playerid, "aLvl") < 1337) return 0;
  6. SendRconCommand("loadfs 911parademapping");
  7. SendClientMessage(playerid, -1, "9/11 Parade Mapping Loaded.");
  8. return 1;
  9. }
  10. CMD:unload911(playerid, params[])
  11. {
  12. if(GetPVarInt(playerid, "aLvl") < 1337) return 0;
  13. SendRconCommand("unloadfs 911parademapping");
  14. SendClientMessage(playerid, -1, "9/11 Parade Mapping Unloaded.");
  15. return 1;
  16. }