Ir para conteúdo

idlerpl

Membro
  • Registro em

  • Última visita

Histórico de Curtidas

  1. Gostei
    idlerpl recebeu reputação de yuriowns em Postman Quest TFS 0.X Versão 7.4   
    https://github.com/Wirless/tfs04island
     
    take from my repo
  2. Gostei
    idlerpl recebeu reputação de Under em [7.72] TFS Nekiro Downgrade Full Setup (Video)   
    yeah maybe eventually I will this is just for people who were stuck on XML for years and didnt wanna watch 20-60minutes videos i made one in 5 :)
  3. Gostei
    Using onStatsChange in TFS 1.x? That's completely incorrect — the proper way is to use onHealthChange and onManaChange.
    However, there is an alternative that doesn't require using two separate functions. It's working — I did it for OTG Global. Take a look at this:
    https://github.com/otg-br/global-11x/blob/main/data/scripts/custom_system_event/boosted_creature_system_full.lua#L192
     
     
    @Under, dá uma olhada nesse sistema. O que eu fiz é bem diferente do seu, mas está funcionando 100%.
    Ele exibe monstros como estátuas, mostra informações de boost, porcentagem de XP e loot. Também envia mensagens com essas informações ao logar.
    Além disso, dá pra colocar em um piso com actionID, e quando o jogador pisa, aparece a mensagem ou executa um comando. Tudo está funcionando perfeitamente, inclusive o loot e a experiência.
    Se quiser, fique à vontade para dar uma olhada, adaptar para o seu GitHub ou até tornar público.
  4. Gostei
    idlerpl recebeu reputação de Under em [OTC] Module - game_bank   
    . What server or website do you use as a base? 
    TFS 1.5
    What is the reason for this topic? 
    Free module share
     
     
     
    game_bank.zip
  5. Gostei
    idlerpl recebeu reputação de Under em RME MAP Editor 5.8.0 update   
    https://github.com/wirless/OTARMEIE

    very crazy nobody posted this here!
  6. Gostei
    idlerpl recebeu reputação de Under em Gostaria de saber como criar um Cliente Próprio na versão 7.6   
  7. Gostei
    idlerpl recebeu reputação de Under em [BOOSTED CREATURE] Vamos melhorar esse código ? TFS 1x   
    use onstatschange and lua table = {} to store the damage then count total damage divide it by the expereince and give correct experience to players
    aditionally to loot just use events monster ondroploot and add validity check there if its boosted creature to give double loot
    function Monster:onDropLoot(corpse) if configManager.getNumber(configKeys.RATE_LOOT) == 0 then return end local player = Player(corpse:getCorpseOwner()) local mType = self:getType() if not player or player:getStamina() > 840 then local monsterLoot = mType:getLoot() -- Generate primary loot for i = 1, #monsterLoot do local item = corpse:createLootItem(monsterLoot[i]) if not item then print('[Warning] DropLoot:', 'Could not add loot item to corpse.') end end -- Check for extra loot with 2% chance if player has specific storage value if player and player:getStorageValue(656002) > 0 and math.random(1, 100) <= 2 then --print("Extra loot generated due to 2% chance!") local secondaryLoot = mType:getLoot() -- Assume you have a method to get secondary loot for i = 1, #secondaryLoot do local item = corpse:createLootItem(secondaryLoot[i]) if not item then print('[Warning] DropLoot:', 'Could not add secondary loot item to corpse.') end end end -- Send loot message to player or party if player then local text = ("Loot of %s: %s"):format(mType:getNameDescription(), corpse:getContentDescription()) local party = player:getParty() if party then -- Broadcast to the party party:broadcastPartyLoot(text) else --player:sendTextMessage(MESSAGE_INFO_DESCR, text) --sendChannelMessage(9, TALKTYPE_CHANNEL_O, text) player:sendChannelMessage("", text, TALKTYPE_CHANNEL_O, 9) --9 is the channel ID, yours might be different if player:getStorageValue(48484848) > 0 then player:sendTextMessage(MESSAGE_INFO_DESCR, text) end end end else -- Send message about no loot due to low stamina if player then local text = ("Loot of %s: nothing (due to low stamina)"):format(mType:getNameDescription()) local party = player:getParty() if party then party:broadcastPartyLoot(text) else --sendChannelMessage(9, TALKTYPE_CHANNEL_O, text) player:sendChannelMessage("", text, TALKTYPE_CHANNEL_O, 9) --9 is the channel ID, yours might be different --player:sendTextMessage(MESSAGE_INFO_DESCR, text) if player:getStorageValue(48484848) > 0 then player:sendTextMessage(MESSAGE_INFO_DESCR, text) end end end end end  
  8. Gostei
    idlerpl recebeu reputação de Under em [7.72] TFS Nekiro Downgrade Full Setup (Video)   
    https://github.com/Wirless/NekiroDowngrade772   full compiled engine everything ready login and play  just follow video 7 minutes to fulyl working ots! 
     
     
  9. Gostei
    why not use https://cursor.com its 10000x better?
  10. Gostei
    idlerpl recebeu reputação de Under em [OTC] Module - game_fishing   
    TFS 1.5
     
    https://gyazo.com/b42464c4e3689d5d1a199e738208fb24

    game_fishing (1).zip

Informação Importante

Confirmação de Termo