Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <a_samp>
- #include <w_Gates>
- public OnFilterScriptInit()
- {
- print("\n--------------------------------------");
- print(" LS pd gates by WeeDarr");
- print("--------------------------------------\n");
- AddSFPDGate();
- return 1;
- }
- public OnPlayerCommandText(playerid, cmdtext[])
- {
- if (strcmp("/openls", cmdtext, true, 7) == 0)
- {
- OpenLSPDGate(playerid, 3.0, 1, 30000);
- return 1;
- }
- if (strcmp("/closels", cmdtext, true, 8) == 0)
- {
- CloseLSPDGate(playerid, 3.0);
- return 1;
- }
- return 0;
- }
Add Comment
Please, Sign In to add comment