Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CMD:skiptut(playerid, params[])
- {
- if (PlayerInfo[playerid][pAdmin] >= 2)
- {
- new giveplayerid;
- if(sscanf(params, "ui", giveplayerid)) return SendClientMessageEx(playerid, COLOR_GREY, "USAGE: /skiptut [player]");
- new string[128];
- if(IsPlayerConnected(giveplayerid))
- {
- if(TutStep[giveplayerid] > 0)
- {
- ClearChatbox(giveplayerid); HideTutGUIBox(giveplayerid); HideTutGUIFrame(giveplayerid, 23);
- PlayerInfo[giveplayerid][pTut] = 24;
- gOoc[giveplayerid] = 0;
- gNews[giveplayerid] = 0;
- gFam[giveplayerid] = 0;
- TutStep[giveplayerid] = 24;
- SetPlayerVirtualWorld(giveplayerid, 0);
- SendClientMessageEx(giveplayerid, COLOR_WHITE, "You have been forced out of the tut by an admin.");
- TogglePlayerControllable(giveplayerid, 1);
- }
- else SendClientMessageEx(playerid, COLOR_GRAD2, "That player is not in the tutorial!");
- }
- }
- else SendClientMessageEx(playerid, COLOR_GRAD1, "You are not authorized to use that command!");
- return 1;
- }
- #pragma unused string
Advertisement
Add Comment
Please, Sign In to add comment