Smashden
Membro-
Total de itens
20 -
Registro em
-
Última visita
Tipo de Conteúdo
Perfis
Fóruns
Calendário
Publique
Tudo que Smashden postou
-
Client Help me with decrypt tibia.spr and tibia.dat
Smashden postou um tópico em Suporte OTServer Derivados
Hello, i have encrypted tibia.spr and tibia.dat, can some one try to decrypt it? Tibia.dat Tibia.spr -
OTClient Aumentando a quantidade de effects permitida - 8.60
Smashden respondeu ao tópico de KotZletY em Tutoriais sobre Clients
bump- 87 respostas
-
- Uint_8 para Uint_16
- Mudando
-
(e 1 mais)
Tags:
-
OTClient Aumentando a quantidade de effects permitida - 8.60
Smashden respondeu ao tópico de KotZletY em Tutoriais sobre Clients
Eu sei como mudar o limite por hex em 8.60 / 10.60 / 10.90 mas não sei em 10.98: /- 87 respostas
-
- Uint_8 para Uint_16
- Mudando
-
(e 1 mais)
Tags:
-
OTClient Aumentando a quantidade de effects permitida - 8.60
Smashden respondeu ao tópico de KotZletY em Tutoriais sobre Clients
Olá, como posso fazê-lo em 10.98?- 87 respostas
-
- Uint_8 para Uint_16
- Mudando
-
(e 1 mais)
Tags:
-
bump
-
Hello, I have problem with unpacking Dragon Ball OTS client, can someone unpack it special for me or put it on the forum? Client from official site: http://dbho.net/DBHO_v1.0%20Beta_OpenGL.exe
-
Need help with adding function to the souce
Smashden respondeu ao tópico de Smashden em Suporte Tibia OTServer
I added this -
Need help with adding function to the souce
Smashden respondeu ao tópico de Smashden em Suporte Tibia OTServer
any help? -
Hello, can someone help me in add onThink to CreatureScript.cpp/h? I'm tried to copy from TFS 0.4 but I can't do this because I'm amatour in C++ That's look my .cpp and .h: creatureevent.cpp http://pastebin.com/MhGZBfQR creatureevent.h http://pastebin.com/FJpHRp2E I usage Devland 0.97b.
-
Puxar/Empurrar (conjunto de spells)
Smashden respondeu ao tópico de xWhiteWolf em Sistemas, Mods & Funções .lua
I need this spell, no matter what functions I use I do not know that this function causes the server to crash.- 59 respostas
-
- Magia que puxa
- puxar
- (e 5 mais)
-
Puxar/Empurrar (conjunto de spells)
Smashden respondeu ao tópico de xWhiteWolf em Sistemas, Mods & Funções .lua
local function doPushCreature(target, cid) if target > 0 then local position = getThingPos(cid) local fromPosition = getThingPos(target) local x = ((fromPosition.x - position.x) < 0 and -1 or ((fromPosition.x - position.x) == 0 and 0 or 1)) local y = ((fromPosition.y - position.y) < 0 and -1 or ((fromPosition.y - position.y) == 0 and 0 or 1)) local toPosition = {x = fromPosition.x + x, y = fromPosition.y + y, z = fromPosition.z} if queryTileAddThing(target, toPosition) == 1 and getTileInfo(toPosition).house == false then doTeleportThing(target, toPosition) end en- 59 respostas
-
- Magia que puxa
- puxar
- (e 5 mais)
-
Puxar/Empurrar (conjunto de spells)
Smashden respondeu ao tópico de xWhiteWolf em Sistemas, Mods & Funções .lua
Instead of getThingPosition I have getThingPos.- 59 respostas
-
- Magia que puxa
- puxar
- (e 5 mais)
-
Puxar/Empurrar (conjunto de spells)
Smashden respondeu ao tópico de xWhiteWolf em Sistemas, Mods & Funções .lua
Hmm, I will try add parameter to the doTeleportThing maybe it will work doTeleportThing working as should, in C++ I have automatic usage true. The problem is with this: local x = ((fromPosition.x - position.x) < 0 and -1 or ((fromPosition.x - position.x) == 0 and 0 or 1)) local y = ((fromPosition.y - position.y) < 0 and -1 or ((fromPosition.y - position.y) == 0 and 0 or 1)) local toPosition = {x = fromPosition.x + x, y = fromPosition.y + y, z = fromPosition.z}- 59 respostas
-
- Magia que puxa
- puxar
- (e 5 mais)
-
Puxar/Empurrar (conjunto de spells)
Smashden respondeu ao tópico de xWhiteWolf em Sistemas, Mods & Funções .lua
I have TeleportThing(uid,newpos) but this dont want work with this spell :/ Look at my luascript.cpp: http://pastebin.com/ZdUGTCuy- 59 respostas
-
- Magia que puxa
- puxar
- (e 5 mais)
-
Puxar/Empurrar (conjunto de spells)
Smashden respondeu ao tópico de xWhiteWolf em Sistemas, Mods & Funções .lua
Server crash and no errors in console. I change getThingPosition to getCreaturePosition and I have again crash server.- 59 respostas
-
- Magia que puxa
- puxar
- (e 5 mais)
-
Puxar/Empurrar (conjunto de spells)
Smashden respondeu ao tópico de xWhiteWolf em Sistemas, Mods & Funções .lua
When i use doMoveCreature(target, getDirectionTo(getCreaturePosition(target), toPosition)) I have crash when CONST_ME_POFF "wave" attack monster :/ Maybe I have broken this functions: doTileQueryAdd(from TFS 0.4) or getThingPosition(from TFS 0.4) :/- 59 respostas
-
- Magia que puxa
- puxar
- (e 5 mais)
-
Puxar/Empurrar (conjunto de spells)
Smashden respondeu ao tópico de xWhiteWolf em Sistemas, Mods & Funções .lua
Hmm, I think problem is with this doTeleportThing(target, toPosition, true) because my function is little different doTeleportThing(target, toPosition) Instead use doTeleportThing can I use this function? doMoveCreature(cid, direction)- 59 respostas
-
- Magia que puxa
- puxar
- (e 5 mais)
-
Puxar/Empurrar (conjunto de spells)
Smashden respondeu ao tópico de xWhiteWolf em Sistemas, Mods & Funções .lua
Hello xWhiteWolf, I have CALLBACK_PARAM_TARGETCREATURE because I use this in oders spells. Maybe this CALLBACK_PARAM_TARGETCREATURE is different in TFS 0.3.6/0.4 than in my server. I try moving CALLBACK_PARAM_TARGETCREATURE from the upper protocol and see if it works, If no a create topic- 59 respostas
-
- Magia que puxa
- puxar
- (e 5 mais)
-
Puxar/Empurrar (conjunto de spells)
Smashden respondeu ao tópico de xWhiteWolf em Sistemas, Mods & Funções .lua
Hello, thanks for scripts. I have problem with it(Empurrar) :/ I use Devland 0.97b and I have this error: Lua Script Error: [Spell Interface] in callback: data/spells/scripts/Inferno.lua:onTargetCreature (Unknown scriptfile) attempt to index a boolean value How to fix this error?- 59 respostas
-
- Magia que puxa
- puxar
- (e 5 mais)
-
9.x - 10.x TFS 0.3 (Suporte para Tibia 10.10) Rev 5969
Smashden respondeu ao tópico de Jamison Collins em Tibia Global OTServer
Where is link to TFS 0.4 rev 5969? Not TFS 1.0
TibiaKing
Open Tibia Server
Quer aprender a criar seu próprio servidor de Tibia? Então está no lugar certo, aqui você encontrará milhares de tutorias, scripts, códigos, mapas e utilitários para que você possa fazer o seu próprio servidor de Tibia começando do zero.
Anuncie no TibiaKing
Precisa de mais visibilidade em seus projetos? Quer fazer um plano publicitário para o seu servidor? Anuncie no OTKing e faça sua divulgação, possuímos centenas de acessos simultâneos e milhares diários, com certeza será a sua solução!