Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Virtual World FS By aizeah555 v2
- //DONT REMOVE MY CREDITS!!!!
- #define FILTERSCRIPT
- #include <a_samp>
- #include <zcmd>
- #define R 0xAA3333AA
- #define LG 0x99FF9900
- public OnFilterScriptInit()
- {
- print("\n-----------------------------------------");
- print(" Virtual Wolrd v2 fs by aizeah555 ");
- print("-------------------------------------------\n");
- return 1;
- }
- CMD:ow ( playerid , params [] )
- {
- if(GetPlayerVirtualWorld(playerid) == 3)
- {
- SendClientMessage(playerid,R,"ERROR : You are Already in another world.");
- }
- else
- {
- SetPlayerVirtualWorld(playerid, 3);
- SendClientMessage(playerid,LG,"You are now in Another World , Use /fr to Go back");
- }
- return 1;
- }
- CMD:fr ( playerid , params [] )
- {
- if(GetPlayerVirtualWorld(playerid) == 0)
- {
- SendClientMessage(playerid,R,"ERROR : You are Already in Freeroam World.");
- }
- else
- {
- SetPlayerVirtualWorld(playerid, 0);
- SendClientMessage(playerid,LG,"You are now in the Freeroam World.");
- }
- return 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement