Guest User

Untitled

a guest
Oct 20th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.40 KB | None | 0 0
  1. CMD:fixvw(playerid, params[])
  2. {
  3.     if(IsPlayerConnected(playerid))
  4.     {
  5.         if(GetPlayerInterior(playerid) >= 1)
  6.         {
  7.             SendClientMessage(playerid, COLOR_GRAD2, "Your Virtual World is not Bugged");
  8.         }
  9.         else
  10.         {
  11.             PlayerInfo[playerid][pVW] =  0;
  12.             SetPlayerVirtualWorld(playerid,  0);
  13.             SendClientMessage(playerid, COLOR_GRAD2, "Your Virtual World has been fixed");
  14.         }
  15.     }
  16.     return 1;
  17. }
Add Comment
Please, Sign In to add comment