Jump to content

PyTrO

Members
  • Posts

    3
  • Joined

  • Last visited

Details

  • Gang
    TL:RPG HQ Team

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

PyTrO's Achievements

I ordered some spaghetti with marinara sauce and I got egg noodles and ketchup. I'm an average nobody.

I ordered some spaghetti with marinara sauce and I got egg noodles and ketchup. I'm an average nobody. (2/54)

0

Reputation

  1. hello, i want to warp all players so i made this but it didnt work with account allowed local Access = { ["None"] = true, ["*-*"] = true, } function warpall() for players in ipairs(getElementsByType("player")) do local paccount = getPlayerAccount(source) if paccount and not isGuestAccount(paccount) and Access[getAccountName(paccount)] then local x3,y3,z3 = getElementPosition(source) setElementPosition ( players, x3, y3, z3 ) end end end addCommandHandler("warpall", warpall)
  2. i just want to move player to another team with chaging his tag color of the team that he want to move to it what worng with that ;3 function lol(player) local r, g, b if exports.SAWGacl:isPlayerInGroup(player,"Admin") then setPedSkin(player, 217) setPlayerTeam(player,getTeamFromName("Admins")) setElementData(player,"class", "Admin") setElementHealth( player, 100 ) setPlayerArmor( player, 100 ) r, g, b = getTeamColor ( Admins ) setPlayerNametagColor ( thePlayer, r , g , b ) else exports.SAWGcommands:sendMessage("*Commands* You :Oing Moron You're not a sexy HQ Member to use this sexy command.",0,255,0,player) end end addCommandHandler("A", lol)
×
×
  • Create New...