
Tudo que Rusherzin postou
-
(Resolvido)[ PEDIDO ] Comando SQL Query
Verdade, isso só vale a partir do level 8. . O normal de level 8 segundo meus cálculos é 185 de HP e 40 de mana então: UPDATE `players` SET `mana` = 40, `manamax` = 40, `health` = 185, `healthmax` = 185;
-
(Resolvido)[ PEDIDO ] Comando SQL Query
A mana e o hp variam por vocação, se disser o id de cada vocação e seu respectivo nome posso fazer o comando para que ele adicione para cada vocação um valor de hp e mana correspondente.
-
Fonte para Title
No problem. Faça quando tiver tempo, não há pressa alguma. kkk
-
Fonte para Title
Obrigado, cara. Ficou melhor que todas as minhas tentativas. Se tiver alguma imagem/ideia melhor, pode mandar, mas por enquanto vou usar essa.
-
Fonte para Title
Olá galera do Tk, quero pedir uma ajuda para quem entende de design pois sou horrível nisso.. Bom, quero um background para o site de Narutibia que estou fazendo. A princípio estou usando esta imagem: Se tiverem alguma ideia quero algo que fique harmônico ali, centralizado, na altura da lua, escrito: Dawinbi. No entanto, se tiverem alguma ideia com uma outra imagem (de naruto, obviamente), eu agradeço de coração. O tamanho é em torno de 1400 x 700 e só tem que estar escrito Dawinbi. Obs: Se puderem postar a escritura separada da imagem para eu usar em outros lugares também, seria ótimo. Agradeço desde já.
-
[Heeeelp] Minha DataBase.SQL Não Tem Players ?
Bom, eu posso ajudar a tentar convertê-la, só preciso da sua database s3db. Sei que poderei ver todas as senhas, mas não é a minha real intenção.. Se tu quiseres que eu tente é só mandá-la por PM.
-
Ja posso casar ?
Meu deus, humilhou-me postando minha foto. Hue Cada um tem sua definição de homem, não quis julgá-lo de forma séria, foi só para entrar na zoeira, mas tudo bem. kk
-
Script para porta VIP
Qual sistema de vip e qual para qual versão?
-
Ja posso casar ?
Pelo visto não serve nem para ser homem.
-
(Resolvido)[Ajuda] heart system
Okay, que estranho, tenta assim: function onDeath(cid, corpse, deathList) if isPlayer(cid) and getPlayerLevel(cid) >= 300 and isPlayer(deathList[1]) then local heart = doPlayerAddItem(deathList[1],5943, 1) doItemSetAttribute(heart, "name", " Coração de " ..getPlayerName(cid).. "") doItemSetAttribute(heart, "description", " Morto no Level "..getPlayerLevel(cid).." Assassinado Por "..getPlayerName(deathList[1])..". " .. (getCreatureSkullType(cid) <= SKULL_GREEN and "(Morte Injustificada)" or "(Morte Justificada)")) end return true end
-
(Resolvido)[Ajuda] heart system
Não entendi qual exatamente é o problema, tente explicar melhor, por favor.
-
(Resolvido)[Ajuda] heart system
Não testei, mas, tente: function onDeath(cid, corpse, deathList) local heart = doPlayerAddItem(deathList[1],5943, 1) if isPlayer(cid) and getPlayerLevel(cid) >= 300 and isPlayer(deathList[1]) then doItemSetAttribute(heart, "name", " Coração de " ..getPlayerName(cid).. "") doItemSetAttribute(heart, "description", " Morto no Level "..getPlayerLevel(cid).." Assassinado Por "..getPlayerName(deathList[1])..". " .. (getCreatureSkullType(cid) <= SKULL_GREEN and "(Morte Injustificada)" or "(Morte Justificada)")) end return true end
- #16 - Evento de Halloween
-
Erro Database MYSQL, qual comando executar para corrigir?
Foi mal.. Tenta assim: ALTER TABLE `players` ADD `guild_id` int(11) NOT NULL DEFAULT '0';
-
Erro Database MYSQL, qual comando executar para corrigir?
ALTER TABLE `players` ADD `guild_id` int(11) NOT NULL DEFAULT '';
-
Superion
Pensamento alheio: Toda sílaba tônica o cara põe acento aeiuaheiuaeha. Nada contra, mas, eu gosto das regras de acentuação do português. :/ Ignorem-me.
-
(Resolvido)PROBLEMA NO ["INSTALL"] DO GESIOR /URGENTE\
O mesmo ?
-
(Resolvido)PROBLEMA NO ["INSTALL"] DO GESIOR /URGENTE\
Executa essa query: ALTER TABLE `players` ADD `rank_id` int(11) NOT NULL DEFAULT '0';
- Heart System
- Heart System
-
Erro no distro "mysql_real_query<>:"
Esse é todo o erro?
-
[AJUDA] Gesior Acc
ALTER TABLE `players` ADD `exphist_lastexp` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist1` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist2` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist3` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist4` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist5` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist6` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `exphist7` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `onlinetimetoday` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `onlinetime1` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `onlinetime2` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `onlinetime3` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `onlinetime4` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `onlinetime5` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `onlinetime6` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `onlinetime7` BIGINT( 255 ) NOT NULL DEFAULT '0', ADD `onlinetimeall` BIGINT( 255 ) NOT NULL DEFAULT '0';
-
PROBLEMA COM CRIAR GUILD NO SITE
Os characters da conta não tem level suficiente para criar a guild ou todos já estão em guilds..
-
[AJUDA] Gesior Acc
Tenta executar essa query na Db: ALTER TABLE `bans` ADD `reason` INT(10) NOT NULL DEFAULT 0;
-
Erro no distro "mysql_real_query<>:"
Executa essa query no SQL do PhPMyAdmin DROP TABLE IF EXISTS `player_advances`; CREATE TABLE `player_advances` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cid` int(11) DEFAULT NULL, `skill` int(11) DEFAULT NULL, `oldlevel` int(11) DEFAULT NULL, `newlevel` int(11) DEFAULT NULL, `time` int(11) DEFAULT NULL, UNIQUE KEY `id` (`id`), KEY `cid` (`cid`), CONSTRAINT `player_advances_ibfk_1` FOREIGN KEY (`cid`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;