Jump to content

AmandaT666

Members
  • Posts

    6
  • Joined

  • Last visited

Recent Profile Visitors

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

AmandaT666's Achievements

Vic

Vic (3/54)

0

Reputation

  1. No caso, eu jogo o arquivo .Lua na pasta de resource direto ou tem que fazer mais algo para o script rodar?
  2. Fiz o script da seguinte forma: <meta> <info author="Amanda" type="animation" name="choro" description="Script de chorar" /> <script src="script.Lua" /> </meta> bool addCommandHandler ( string chorar, function function toggleSit(thePlayer) if not getElementData(thePlayer, "sitting") then setPedAnimation(thePlayer, "ped", "seat_down", -1, false, false, false, false) setElementData(thePlayer, "sitting", true) else -- If you use again this command then your character stand up setPedAnimation(thePlayer) removeElementData(thePlayer, "sitting") end end addCommandHandler("sit", toggleSit) [, bool caseSensitive = true ] ) Ele está certo?
  3. Valeu, mas eu tenho que fazer isso no modo Client ou Server?
  4. Sou nova na parte de programação em geral, e gostaria de solicitar ajuda em como criar um script simples, que teria o objetivo de fazer o jogador executar uma certa animação do jogo quando digitasse um comando no chat (/dança 1, /chorar, etc...). No caso, para a criação de tal script, como eu faria para iniciar a animação no jogador e como eu iria criar uma função para a mesma ser parada?
×
×
  • Create New...