Ir para conteúdo

Astra Moskov

Membro
  • Registro em

  • Última visita

Tudo que Astra Moskov postou

  1. Astra Moskov postou uma resposta no tópico em Suporte & Pedidos
    Obrigado, estamos trabalhando ao máximo pra deixar o ot o mais jogável e agradável possível. Obrigado,estarei voltando a postar novas prints
  2. Astra Moskov postou uma resposta no tópico em Tutoriais Websites
    Top Mn,em breve vou estar disponibilizando algumas artes personalizadas pra isso.
  3. @Jeremiasvct Gostei da iniciativa o projeto é bom,boa sorte nele
  4. Astra Moskov postou uma resposta no tópico em Websites
    SUPER PACK Eae galera vim disponibilizar um super pack de imagens para vocês editarem seus sites. Download ---------- Virustotal Creditos tibiawiki Tibiaroleta
  5. Ja testou colocar outra pagina de outro gesior ?
  6. @Storm O Jogador n sai ao deslogar,o problema e que se acabar o tempo ele não sai da prisão tem que fazer manualmente
  7. Astra Moskov postou uma resposta no tópico em Mapping Show Off
    Ficou top,a city ficou limpa e elegante.
  8. ERROR: protected lua call failed: LUA ERROR: /client_entergame/entergame.lua:213: attempt to call field 'getProtocolVersionForClient' (a nil value) stack traceback: [C]: in function 'getProtocolVersionForClient' /client_entergame/entergame.lua:213: in function 'doLogin' /client_entergame/entergame.otui:139: [@onClick]:2: in function </client_entergame/entergame.otui:139: [@onClick]:1> Esse e o erro que ocorre no OTC,Não sai da aba de autenticação.
  9. Olá gostaria de pedir para alguém implementar no script para escolher a quantidade de horas que o jogador vai ficar na prisão por comando no jogo exemplo:/Prison Alef,600. é também se possível resolver um errinho que se o jogador estiver deslogado o script n o retira da prisão ao logar. -- Tempo em segundos que alguém ficará na prisão -- default_jail = 600 -- O group ID da permissão para alguém manda o outro para a cadeia. -- grouprequired = 5 -- StorageValue that the player gets -- jailedstoragevalue_time = 1338 jailedstoragevalue_bool = 1339 -- POSICAO DA CADEIA: -- jailpos = {x = 337, y = 287, z = 7} -- POSICAO DO LUGAR QUE ELE VOLTARÁ (RECOMENDADO TEMPO): -- unjailpos = {x = 373, y = 192, z = 7} -- auto kicker, dont edit jail_list = {} jail_list_work = 0 function checkJailList(param) addEvent(checkJailList, 1000, {}) for targetID,player in ipairs(jail_list) do if isPlayer(player) == TRUE then if getPlayerStorageValue(player, jailedstoragevalue_time) < os.time() then doTeleportThing(player, unjailpos, TRUE) setPlayerStorageValue(player, jailedstoragevalue_time, 0) setPlayerStorageValue(player, jailedstoragevalue_bool, 0) table.remove(jail_list,targetID) doPlayerSendTextMessage(player,MESSAGE_STATUS_CONSOLE_ORANGE,'[Real] You\'ve been kicked out of prison! See you later') end else table.remove(jail_list,targetID) end end end function onSay(cid, words, param) if jail_list_work == 0 then jail_list_work = addEvent(checkJailList, 1000, {}) end if param == '' and (words == '!leaveprison' or words == '/leaveprison') then if getPlayerStorageValue(cid, jailedstoragevalue_time) > os.time() then doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, '[Real] You\'re stuck up ' .. os.date("%H:%M:%S", getPlayerStorageValue(cid, jailedstoragevalue_time)) .. ' (Now are: ' .. os.date("%H:%M:%S", os.time()) .. ').') else if getPlayerStorageValue(cid, jailedstoragevalue_bool) == 1 then table.insert(jail_list,cid) doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, '[Real] You\'ll be thrown out of jail in a second.') else doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, '[Real] You are not arrested.') end end return TRUE end local jail_time = -1 for word in string.gmatch(tostring(param), "(%w+)") do if tostring(tonumber(word)) == word then jail_time = tonumber(word) end end local isplayer = getPlayerByName(param) if isPlayer(isplayer) ~= TRUE then isplayer = getPlayerByName(string.sub(param, string.len(jail_time)+1)) if isPlayer(isplayer) ~= TRUE then isplayer = getPlayerByName(string.sub(param, string.len(jail_time)+2)) if isPlayer(isplayer) ~= TRUE then isplayer = getPlayerByName(string.sub(param, string.len(jail_time)+3)) end end end if jail_time ~= -1 then jail_time = jail_time * 60 else jail_time = default_jail end if words == '!prison' or words == '/prison' then if getPlayerGroupId ( cid ) >= grouprequired then if isPlayer(isplayer) == TRUE then doTeleportThing(isplayer, jailpos, TRUE) setPlayerStorageValue(isplayer, jailedstoragevalue_time, os.time()+jail_time) setPlayerStorageValue(isplayer, jailedstoragevalue_bool, 1) table.insert(jail_list,isplayer) doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, '[Real] You\'re stuck '.. getCreatureName(isplayer) ..' até ' .. os.date("%H:%M:%S", getPlayerStorageValue(isplayer, jailedstoragevalue_time)) .. ' (Now are: ' .. os.date("%H:%M:%S", os.time()) .. ').') doPlayerSendTextMessage ( isplayer, MESSAGE_INFO_DESCR, '[Real] You were arrested until ' .. os.date("%H:%M:%S", getPlayerStorageValue(isplayer, jailedstoragevalue_time)) .. ' (Now are: ' .. os.date("%H:%M:%S", os.time()) .. ').') return TRUE else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "The player with this name does not exist or is offline.") return FALSE end else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "[Real] You can not free other players.") return FALSE end elseif words == '!leaveprison' or words == '/leaveprison' then if getPlayerGroupId ( cid ) >= grouprequired then if isPlayer(isplayer) == TRUE then doTeleportThing(isplayer, unjailpos, TRUE) setPlayerStorageValue(isplayer, jailedstoragevalue_time, 0) setPlayerStorageValue(isplayer, jailedstoragevalue_bool, 0) table.remove(jail_list,targetID) doPlayerSendTextMessage(isplayer,MESSAGE_STATUS_CONSOLE_ORANGE,getCreatureName(cid) .. 'I\'ll let you out of prison.!') doPlayerSendTextMessage ( cid, MESSAGE_INFO_DESCR, 'You are loose '.. getCreatureName(isplayer) ..'.') else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "The player with this name does not exist or is offline.") return FALSE end else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You can not free other players.") return FALSE end end return FALSE end
  10. Verifique sé sua Database tem as Account Samples
  11. Astra Moskov postou uma resposta no tópico em Suporte & Pedidos
    25/01/2019 ATUALIZAÇÃO MAIS RECENTE 01 02 03 04 05 06 07 08 09 10 Creditos:@Astra Moskov e @movie Prisão Baseada no Caterot

Informação Importante

Confirmação de Termo