Ir para conteúdo

Mek Fiuchem

Membro
  • Registro em

  • Última visita

Histórico de Curtidas

  1. Gostei
    Mek Fiuchem recebeu reputação de Miragem em [DUVIDA] Como Posso dar look No Player e ver os frags   
    Crie na pasta Data/Creaturescripts/script o arquivo fraglook.lua
    e cole isso

    function getPlayerFrags(cid) local time = os.time() local times = {today = (time - 86400), week = (time - (7 * 86400))} local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") if(result:getID() ~= -1) then repeat local content = {date = result:getDataInt("date")} if(content.date > times.today) then table.insert(contents.day, content) elseif(content.date > times.week) then table.insert(contents.week, content) else table.insert(contents.month, content) end until not result:next() result:free() end local size = { day = table.maxn(contents.day), week = table.maxn(contents.week), month = table.maxn(contents.month) } return size.day + size.week + size.month end function onLogin(cid) registerCreatureEvent(cid, "fraglook") return true end function onLook(cid, thing, position, lookDistance) if isPlayer(thing.uid) and thing.uid ~= cid then doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']') return true elseif thing.uid == cid then doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..']') local string = 'You see yourself.' if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then string = string..' You are '.. getPlayerGroupName(cid) ..'.' elseif getPlayerVocation(cid) ~= 0 then string = string..' You are '.. getPlayerVocationName(cid) ..'.' else string = string..' You have no vocation.' end string = string..getPlayerSpecialDescription(cid)..'' if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' end if getPlayerGuildId(cid) > 0 then string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) return false end return true end Agora no Data/Creaturescripts/creaturescripts.xml adicione essas tags: <event type="login" name="fraglook_register" event="script" value="fraglook.lua"/> <event type="look" name="fraglook" event="script" value="fraglook.lua"/>


    Ajudei ? Rep+ Please
  2. Gostei
    Mek Fiuchem recebeu reputação de samuel.show em [DUVIDA] Como Posso dar look No Player e ver os frags   
    Crie na pasta Data/Creaturescripts/script o arquivo fraglook.lua
    e cole isso

    function getPlayerFrags(cid) local time = os.time() local times = {today = (time - 86400), week = (time - (7 * 86400))} local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") if(result:getID() ~= -1) then repeat local content = {date = result:getDataInt("date")} if(content.date > times.today) then table.insert(contents.day, content) elseif(content.date > times.week) then table.insert(contents.week, content) else table.insert(contents.month, content) end until not result:next() result:free() end local size = { day = table.maxn(contents.day), week = table.maxn(contents.week), month = table.maxn(contents.month) } return size.day + size.week + size.month end function onLogin(cid) registerCreatureEvent(cid, "fraglook") return true end function onLook(cid, thing, position, lookDistance) if isPlayer(thing.uid) and thing.uid ~= cid then doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']') return true elseif thing.uid == cid then doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..']') local string = 'You see yourself.' if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then string = string..' You are '.. getPlayerGroupName(cid) ..'.' elseif getPlayerVocation(cid) ~= 0 then string = string..' You are '.. getPlayerVocationName(cid) ..'.' else string = string..' You have no vocation.' end string = string..getPlayerSpecialDescription(cid)..'' if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' end if getPlayerGuildId(cid) > 0 then string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) return false end return true end Agora no Data/Creaturescripts/creaturescripts.xml adicione essas tags: <event type="login" name="fraglook_register" event="script" value="fraglook.lua"/> <event type="look" name="fraglook" event="script" value="fraglook.lua"/>


    Ajudei ? Rep+ Please
  3. Gostei
    Mek Fiuchem recebeu reputação de Thenebrozo em [DUVIDA] Como Posso dar look No Player e ver os frags   
    Crie na pasta Data/Creaturescripts/script o arquivo fraglook.lua
    e cole isso

    function getPlayerFrags(cid) local time = os.time() local times = {today = (time - 86400), week = (time - (7 * 86400))} local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") if(result:getID() ~= -1) then repeat local content = {date = result:getDataInt("date")} if(content.date > times.today) then table.insert(contents.day, content) elseif(content.date > times.week) then table.insert(contents.week, content) else table.insert(contents.month, content) end until not result:next() result:free() end local size = { day = table.maxn(contents.day), week = table.maxn(contents.week), month = table.maxn(contents.month) } return size.day + size.week + size.month end function onLogin(cid) registerCreatureEvent(cid, "fraglook") return true end function onLook(cid, thing, position, lookDistance) if isPlayer(thing.uid) and thing.uid ~= cid then doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']') return true elseif thing.uid == cid then doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..']') local string = 'You see yourself.' if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then string = string..' You are '.. getPlayerGroupName(cid) ..'.' elseif getPlayerVocation(cid) ~= 0 then string = string..' You are '.. getPlayerVocationName(cid) ..'.' else string = string..' You have no vocation.' end string = string..getPlayerSpecialDescription(cid)..'' if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' end if getPlayerGuildId(cid) > 0 then string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) return false end return true end Agora no Data/Creaturescripts/creaturescripts.xml adicione essas tags: <event type="login" name="fraglook_register" event="script" value="fraglook.lua"/> <event type="look" name="fraglook" event="script" value="fraglook.lua"/>


    Ajudei ? Rep+ Please
  4. Gostei
    Mek Fiuchem recebeu reputação de pagowgames em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  5. Gostei
    Mek Fiuchem recebeu reputação de bonehell em [DUVIDA] Como Posso dar look No Player e ver os frags   
    Crie na pasta Data/Creaturescripts/script o arquivo fraglook.lua
    e cole isso

    function getPlayerFrags(cid) local time = os.time() local times = {today = (time - 86400), week = (time - (7 * 86400))} local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") if(result:getID() ~= -1) then repeat local content = {date = result:getDataInt("date")} if(content.date > times.today) then table.insert(contents.day, content) elseif(content.date > times.week) then table.insert(contents.week, content) else table.insert(contents.month, content) end until not result:next() result:free() end local size = { day = table.maxn(contents.day), week = table.maxn(contents.week), month = table.maxn(contents.month) } return size.day + size.week + size.month end function onLogin(cid) registerCreatureEvent(cid, "fraglook") return true end function onLook(cid, thing, position, lookDistance) if isPlayer(thing.uid) and thing.uid ~= cid then doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']') return true elseif thing.uid == cid then doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..']') local string = 'You see yourself.' if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then string = string..' You are '.. getPlayerGroupName(cid) ..'.' elseif getPlayerVocation(cid) ~= 0 then string = string..' You are '.. getPlayerVocationName(cid) ..'.' else string = string..' You have no vocation.' end string = string..getPlayerSpecialDescription(cid)..'' if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' end if getPlayerGuildId(cid) > 0 then string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) return false end return true end Agora no Data/Creaturescripts/creaturescripts.xml adicione essas tags: <event type="login" name="fraglook_register" event="script" value="fraglook.lua"/> <event type="look" name="fraglook" event="script" value="fraglook.lua"/>


    Ajudei ? Rep+ Please
  6. Gostei
    Mek Fiuchem recebeu reputação de vellon em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  7. Gostei
    Mek Fiuchem recebeu reputação de javierpk em Tibia para de funcionar quando abro o MageBot   
    pode ser o crack , tente outro crack para ve se volta a funcionar
  8. Gostei
    Mek Fiuchem recebeu reputação de wolfgan em Melhor bot para up no global?   
    Tem o iBot+ Plus & WindBot
     
    Muitos tem medo de perde a conta usando iBot, porque teve um massacre que será lembrado eternamente por quem usava o iBot [Normal], tinha ficado igual "elfng" usava 1 dia e era banido, ai muitos perdeu confiança no iBot e foi pro WindBot, porém Windbot nn é lá tão grande coisa, eu ainda prefiro o iBot+
     
    Ainda sou uma lenda por usar bot 24h e nn ser deletado até hj (usando iBot,BBot. 4 anos está fazendo)
  9. Gostei
    Mek Fiuchem recebeu reputação de cassio20 em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  10. Gostei
    Mek Fiuchem recebeu reputação de cassio20 em [iBot] Script Thread Request   
    EK Carlin Rots.xml
    EK-Rotworm-Thais-by-BimRock-v2.0.xml
    Rotcarlin kina.xml
  11. Gostei
    Mek Fiuchem recebeu reputação de Jurya em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  12. Gostei
    Mek Fiuchem recebeu reputação de Felipetibia em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  13. Gostei
    Mek Fiuchem recebeu reputação de urnau em [iBot] Script Thread Request   
    Eu peguei um com refill, dei uma simples editada nele, removendo o refill e uma actions e HUD para melhorar o desempenho.
     
     
    Da proxima não precisa colocar o nome do seu character, eu coloquei Name referindo ao nome do script que você deseja.
    imba thais south orcs v1.0.0.xml
    KormayaDwarfZ.xml
    Yalahar Undead v1.2.xml
  14. Gostei
    Mek Fiuchem recebeu reputação de urnau em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  15. Gostei
    Mek Fiuchem recebeu reputação de rafz7 em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  16. Gostei
    Mek Fiuchem recebeu reputação de wolfgan em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  17. Gostei
    Mek Fiuchem recebeu reputação de locauty em [DUVIDA] Como Posso dar look No Player e ver os frags   
    Crie na pasta Data/Creaturescripts/script o arquivo fraglook.lua
    e cole isso

    function getPlayerFrags(cid) local time = os.time() local times = {today = (time - 86400), week = (time - (7 * 86400))} local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") if(result:getID() ~= -1) then repeat local content = {date = result:getDataInt("date")} if(content.date > times.today) then table.insert(contents.day, content) elseif(content.date > times.week) then table.insert(contents.week, content) else table.insert(contents.month, content) end until not result:next() result:free() end local size = { day = table.maxn(contents.day), week = table.maxn(contents.week), month = table.maxn(contents.month) } return size.day + size.week + size.month end function onLogin(cid) registerCreatureEvent(cid, "fraglook") return true end function onLook(cid, thing, position, lookDistance) if isPlayer(thing.uid) and thing.uid ~= cid then doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']') return true elseif thing.uid == cid then doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..']') local string = 'You see yourself.' if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then string = string..' You are '.. getPlayerGroupName(cid) ..'.' elseif getPlayerVocation(cid) ~= 0 then string = string..' You are '.. getPlayerVocationName(cid) ..'.' else string = string..' You have no vocation.' end string = string..getPlayerSpecialDescription(cid)..'' if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' end if getPlayerGuildId(cid) > 0 then string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) return false end return true end Agora no Data/Creaturescripts/creaturescripts.xml adicione essas tags: <event type="login" name="fraglook_register" event="script" value="fraglook.lua"/> <event type="look" name="fraglook" event="script" value="fraglook.lua"/>


    Ajudei ? Rep+ Please
  18. Gostei
    Mek Fiuchem recebeu reputação de fernandohn em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  19. Gostei
    Mek Fiuchem recebeu reputação de arthurmaq em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  20. Gostei
    Mek Fiuchem recebeu reputação de arthurmaq em [iBot] Script Thread Request   
    Tu não fala cidade e nem o level... quer que eu procure oque ? -_-
     
     
     
    norkk Elf + Minos 1.0.0.xml
    YalaharEKMagicians.xml
    ALLCollector Bearcomb Thais.xml
    Yalahar Right Graveyard for Knight v1.0.0 FREE by BlakW.xml
    EK Barbarian Small Camp v1.0.1 by Viina Scripts.xml
    45+ EK - Tiquanda Laboratory - Port Hope - JaoMaluku.xml
  21. Gostei
    Mek Fiuchem recebeu reputação de drg em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  22. Gostei
    Mek Fiuchem recebeu reputação de LeoZiituuSS em [iBot] Script Thread Request   
    EK Carlin Rots.xml
    EK-Rotworm-Thais-by-BimRock-v2.0.xml
    Rotcarlin kina.xml
  23. Gostei
    Mek Fiuchem recebeu reputação de LeoZiituuSS em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 
  24. Gostei
    Mek Fiuchem deu reputação a Flamer em [Windows Phone | C#] Criando seu Primeiro App   
    Este tutorial irá exemplificar a criação de um Hello World para Windows Phone através de simples passos e oferecendo uma visão geral sobre os principais pontos necessários para criação de futuros Apps.
    Desde já deixo claro que não sou um especialista nesta área de desenvolvimento e venho apresentar o conteúdo que ainda estou a aprimorar.
     
     
    Por que Windows Phone?
    É notável que sim, a Microsoft chegou atrasada no campo dos smartphones, tendo que fazer o seu melhor para superar grandes concorrentes que dominaram o mercado mundial em hardware e software de smartphones. Porém, é notável também a grande batalha por inovação da Microsoft nos últimos anos. Para se ter noção, o WP foi lançado ao final de 2010, enquanto o Android já havia 2 anos de estrada (lançado em 2008) e o IOS, 3 (lançado em 2007).

    Sobretudo, ao início do 5º ano de evolução do Windows Phone, o que se destaca a favor da Microsoft é o inigualável nivelamento de experiência de usuário. De aparelhos de entrada aos topo de linha, tudo se mantém fluido no Windows Phone ao contrário da obsolência programada dos concorrentes, a Microsoft tenta levar a mesma experiência para todos os aparelhos em condições de rodar o S.O.

    Fora os aspectos de usabilidade, existe uma espetacular diferencial para os desenvolvedores. O Visual Studio juntamente com a bem formada plataforma .NET .  Todos aqueles que já utilizaram o Visual Studio em projetos comerciais conseguem entender o diferencial em programar numa IDE altamente competente junto com uma plataforma completa, elevando o grau de produtividade de forma a ter poucos comparativos a serem mencionados.
      Ambiente de Desenvolvimento / Linguagem
    Utilizo em meu computador o Visual Studio 2013 Ultimate Update 3, porém outras versões mais recentes do VS (como o VS Community) também poderão oferecer os mesmos ou similares recursos como templates de projetos etc...
    Utilizarei a linguagem C#
      Criando seu Projeto
    Inicie um novo projeto do Windows Phone através da tela inicial do VS a partir do menu: File > New > Project...​ 


    Selecione então no sub-menu da linguagem escolhida (Visual C#) Store Apps > Windows Phone Apps e então o template Blank App
    Nomei-o como "HelloWP" e clique em OK para criação do projeto.



    A estrutura inicial do projeto conterá a pasta Assets com materiais visuais para serem utilizados no projeto.
    O arquivo App.xaml qual é o ponto de partida de seu App, ele é chamado ao inicializar o aplicativo e continua ativo ao chamar outras páginas.
    O arquivo MainPage.xaml que corresponde a página principal do App, e sobre a qual trabalharemos.




    Note que todas as páginas presentes no projeto contém um arquivo .cs  qual, assim como utilizado nos Windows Forms, será o responsável pelo código C# da página.

    Os arquivos .xaml são responsáveis por toda a formatação visual da página, nos quais poderemos inserir conteúdo baseado em tags similar a uma formatação XML convencional ou HTML.

      Inserindo os Controles
    Caso tenha utilizado do Visual Studio para desenvolvimento desktop (Windows Forms) esta etapa será bastante similar.

    Com a página MainPage.xml aberta, utilize a Toolbox à esquerda para selecionar o item TextBlock, e então inseri-lo (clicando duas vezes ou clicando e arrastando o mouse sobre a página após a seleção do item).





    Na janela de Properties (à direita), com o componente TextBlock selecionado, insira o nome para ele, qual daremos TxtMensagem.
    Aproveitaremos também para aumentar esta fonte, ao expandir a lista Text (na janela Properties) e setar seu valor para 48px





    Abaixo do TextBlock iremos inserir um Button, selecionando-o a partir da ToolBox e inserindo-o assim como o TextBlock



    Utilizaremos novamente a janela Properties para modificar o texto mostrado no button.Com o button ainda selecionado, alteraremos a propriedade Content , na lista Common. Insira o valor "Iniciar"



      Adicionando Eventos

    Adicionaremos o evento de click ao button. Para tal, com o button selecionado, clique no ícone de raio na janela Properties, e então clique 2x na caixa de texto do item Click





    Isto irá criar um novo evento no arquivo MainPage.xaml.cs , qual responderá pelos cliques no botão recém-criado.
    Dentro do evento do clique, iremos alterar a propriedade Text do nosso TextBlock (TxtMensagem), para tal utilizaremos do código:



      XAML (Opcional Porém Útil)
    Peço que volte ao arquivo MainPage.xaml, nele verifique o conteúdo do XAML gerado por nossas ações:

    <Page x:Class="HelloWP.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:HelloWP" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"> <Grid> <TextBlock x:Name="TxtMensagem" HorizontalAlignment="Left" Height="144" Margin="96,100,0,0" TextWrapping="Wrap" Text="TextBlock" VerticalAlignment="Top" Width="228" FontSize="48"/> <Button Content="Iniciar" HorizontalAlignment="Left" Height="70" Margin="124,300,0,0" VerticalAlignment="Top" Width="158" Click="Button_Click"/> </Grid> </Page> - Grid: responsável por agrupar componentes, não sendo possível adicionar componentes na página fora de um grid.
    - TextBlock: componente inserido através do design. Perceba que ele tem propriedades definidas (quais definimos pelo design) como Text, Name, Width
    - Button: componente inserido através do design. Perceba que como não inserimos um nome ele não tem o atributo Name, porém tem o atributo Click, qual indica qual método chamar do arquivo .cs correspondente.

      Rodando Seu App
    Finalizado o desenvolvimento, você poderá executar seu app através de um emulador Windows Phone (qual já deverá vir configurado com seu Visual Studio).  Para tal simplesmente aperte F5 ou clique sobre o botão de Iniciar Debug no menu superior.

    Espere o emulador carregar, e seu aplicativo será iniciado logo em seguida.







     
  25. Gostei
    Mek Fiuchem recebeu reputação de Ricardoaguiar13 em [iBot] Script Thread Request   
    Está precisando de um script e não consegue achar ? Faça seu pedido e irei ver se acho.
     
    Lembrando para pedir um script terá que reputar o tópico, sinceramente não vou passar script pra quem não faz um simples gesto.
     
     
    Preencha a baixo e aguarde até 48h
     
     
    Name:
    City:
    Vocation:
     
     
    Caso tenha achado um script no site do iBot e seu usuário é free member, passe o Link que faço download e disponibilizo. 

Informação Importante

Confirmação de Termo