
Tudo que BilauX postou
-
look matou x e morreu x
já instalei uma caralhada nenhum funfa direito pqp......
- (2º) | [8.60] - Glorious Server
-
look matou x e morreu x
tfs 0.4
-
Erros de Monstro No Linux
eu postei ali vê aí ta maiúsculo mesmo assim o erro persiste.... <monster name="Behemoth" file="giants/Behemoth.xml"/>
-
Erros de Monstro No Linux
ta falando spawn:: addmonster cannot find "Behemoth", pq do erro ?? só q meu monsters xml do behemoth ta assim <monster name="Behemoth" file="giants/Behemoth.xml"/>
-
Account Manager
quero no meu distro pow, se ninguem não sabe, vou procurar ate achar hehe
-
Account Manager
eu sei q é na sources, problema é q lugar e como fazer ?? hueuhueuh
-
Layout Bugado
alguém ajuda ???
-
Terceira Vocação
fala galera meu ot tem uma terceira vocação ela não aparece no character.php, quando eu clico no nick do cara no site, como adiciono ??? os ids são do 9 ao 12, nomes Otfun Master Sorcerer, Royal Paladin, Elder Druid e Elite Knight
-
Account Manager
alguem sabe como eu coloco esse account manager no meu ot, ele é azul bem mais descatacado e o cara não precisa desloga pra criar o character ele cria tudo em um login só..
-
look matou x e morreu x
fala galera to bom tempo atrás,daquele script matou x e morreu x, e eu achei um só q só funciona look em vc mesmo se dar em alguem não aparece matou x e morreu x como resolver ?? function getDeaths(cid) local query, d = db.getResult("SELECT `player_id` FROM `player_killers` WHERE `player_id` = " ..getPlayerGUID(cid)), 0 if (query:getID() ~= -1) then repeat d = d+1 until not query:next() query:free() end return d end 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 onLook(cid, thing, position, lookDistance) if isPlayer(thing.uid) and thing.uid ~= cid then return doPlayerSetSpecialDescription(thing.uid, '\n'.. '[Frags: ' .. getPlayerFrags(thing.uid) .. ' - Frags Totais: ' .. getDeaths(thing.uid) .. ']') elseif thing.uid == cid then 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 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 string = string..'\n'.. '[Matou: ' .. getPlayerFrags(cid) .. ' - Morreu: ' .. getDeaths(cid) .. ']' 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 return false, doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) end return 1 end
-
bau de quest hora funfa hora não
como posta em spoiler ??? creio q geral já e premium.....
-
bau de quest hora funfa hora não
fala galera é o seguinte tem um bau na minha quest tem gente q consegue pegar o item outros não, como resolver ???? o script é esse ou qualquer coisa como faço um novo script pra esse bau local specialQuests = { [2001] = 30015 --Annihilator } local questsExperience = { [30015] = 10000 } function onUse(cid, item, fromPosition, itemEx, toPosition) if(getPlayerCustomFlagValue(cid, PlayerCustomFlag_GamemasterPrivileges)) then doSendMagicEffect(getCreaturePosition(cid), CONST_ME_POFF, cid) return true end local storage = specialQuests[item.actionid] if(not storage) then storage = item.uid if(storage > 65535) then return false end end if(getPlayerStorageValue(cid, storage) > 0) then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "It is empty.") return true end local items = {} local reward = 0 local size = isContainer(item.uid) and getContainerSize(item.uid) or 0 if(size == 0) then reward = doCopyItem(item, false) else for i = 0, size do local tmp = getContainerItem(item.uid, i) if(tmp.itemid > 0) then table.insert(items, tmp) end end end size = table.maxn(items) if(size == 1) then reward = doCopyItem(items[1], true) end local result = "" if(reward ~= 0) then local ret = getItemDescriptions(reward.uid) if(reward.type > 0 and isItemRune(reward.itemid)) then result = reward.type .. " charges " .. ret.name elseif(reward.type > 0 and isItemStackable(reward.itemid)) then result = reward.type .. " " .. ret.plural else result = ret.article .. " " .. ret.name end else if(size > 20) then reward = doCopyItem(item, false) elseif(size > 8) then reward = getThing(doCreateItemEx(1988, 1)) else reward = getThing(doCreateItemEx(1987, 1)) end for i = 1, size do local tmp = doCopyItem(items, true) if(doAddContainerItemEx(reward.uid, tmp.uid) ~= RETURNVALUE_NOERROR) then print("[Warning] QuestSystem:", "Could not add quest reward") else local ret = ", " if(i == 2) then ret = " and " elseif(i == 1) then ret = "" end result = result .. ret ret = getItemDescriptions(tmp.uid) if(tmp.type > 0 and isItemRune(tmp.itemid)) then result = result .. tmp.type .. " charges " .. ret.name elseif(tmp.type > 0 and isItemStackable(tmp.itemid)) then result = result .. tmp.type .. " " .. ret.plural else result = result .. ret.article .. " " .. ret.name end end end end if(doPlayerAddItemEx(cid, reward.uid, false) ~= RETURNVALUE_NOERROR) then result = "You have found a reward weighing " .. getItemWeight(reward.uid) .. " oz. It is too heavy or you have not enough space." else result = "You have found " .. result .. "." setPlayerStorageValue(cid, storage, 1) if(questsExperience[storage] ~= nil) then doPlayerAddExp(cid, questsExperience[storage]) doSendAnimatedText(getCreaturePosition(cid), questsExperience[storage], TEXTCOLOR_WHITE) end end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, result) return true end
-
(Resolvido)[URGENTE] INVALID PASSWORD
putz o meu começou da isso, no meu protocolgame.cpp não tem isso
-
Bloquear Elfbot
mais ai mano, attack speed fica lento pacas, fica ruim =.=.....
-
[ERRO] COMPILAR Distro Tfs Luan 0.4 _7
eu digitei isso lá msm assim o erro persiste ?? ou como adciona isso ??
-
Layout Bugado
ta mais eu quero rank 10 posições uai ...
-
Terceira Vocação
fala galera meu ot tem uma terceira vocação ela não aparece no character.php, quando eu clico no nick do cara no site, como adiciono ???
-
Layout Bugado
up
-
Bloquear Elfbot
elfbot tem um comando q chama auto 1 attack target tu usa isso, seu attack speed fica rapidao acima do q ta configurado do servidor....
-
Bloquear Elfbot
fala galera tem ot q não funciona o attack target como bloquear ???
-
Character.php
- Gesior by Matk
-
VIP pra acc toda
blz galera é o seguinte no meu servidor o cara abre o bau e vira vip, só q o vip só da pra um boneco de vez pra acc dele toda, como arrumar ???
-
Character.php
achei ela no shop de outro ot e peguei agora problema é o seguinte a data de criação do meu character php ta 1969 ot nem existia nesse ano, aonde eu pego varios caracter php diferente pra mim ir mudando ate um q me agrada.......