Ir para conteúdo

[Pokemon] Servidor Stigal 3.0 [Pda 1.5]


Stigal

Posts Recomendados

Cara eu nao vejo porque da Briga sendo Que a maioria dos Creditos é do Stigal E o cara ainda dexou os creditos Não há porque Brigar.

Problema resolvido cara, esse ai era meu servidor que eu ia lançar so que desisti e por boa vontade postei o mapa e o servidor com umas coisas novas.

quem nao gostou faz melhor ;D

 

abraço

Link para o comentário
Compartilhar em outros sites

fala ae poderia me ajudar aonde eu mudo o tempo de aparecer os pokes? tipo eu quero mudar o tempo de o shiny onix aparecer rep+ se me ajudar nesse probleminha

Usuario, Bom otima pergunta... e uma bem freequente aqui neah rsrs'

 

Mas bem vamos a ajuda ;)

 

"Pasta Servidor > Data > Creaturescripts > Scripts" procure por "Spawn.lua"

No Scripts estará assim (+/-):

 

local shinys = {
"Bulbasaur", "Ivysaur", "Venusaur", "Charmander", "Charmeleon", "Charizard", "Squirtle", "Wartortle", "Blastoise",
"Caterpie", "Metapod", "Butterfree", "Weedle", "Kakuna", "Beedrill", "Pidgey", "Pidgeotto", "Pidgeot", "Rattata",
"Raticate", "Spearow", "Fearow", "Ekans", "Arbok", "Pikachu", "Raichu", "Sandshrew", "Sandslash", "Nidoran Female",
"Nidorina", "Nidoqueen", "Nidoran Male", "Nidorino", "Nidoking", "Clefairy", "Clefable", "Vulpix", "Ninetales",
"Jigglytuff", "Wigglytuff", "Zubat", "Golbat", "Odish", "Gloom", "Vileplume", "Paras", "Parasect", "Venonat", "Venomoth",
"Diglett", "Dugtrio", "Mewoth", "Persian", "Psyduck", "Golduck", "Mankey", "Primeape", "Growlithe", "Arcanine",
"Poliwag", "Poliwhirl", "Poliwrath", "Abra", "Kadabra", "Alakazam", "Machop", "Machoke", "Machamp", "Bellsprout",
"Weepinbell", "Victreebel", "Tentacool", "Tentacruel", "Geodude", "Graveler", "Golem", "Ponyta", "Rapidash", "Slowpoke",
"Slowbro", "Magnamite", "Magneton", "Farfetch'd", "Doduo", "Dodrio", "Seel", "Dewgong", "Grimer", "Muk", "Shellder",
"Cloyster", "Gastly", "Haunter", "Gengar", "Onix", "Drowzee", "Hypno", "Krabby", "Kingler", "Voltorb", "Electrode",
"Exeggcute", "Exeggutor", "Cubone", "Marowak", "Hitmonlee", "Hitmonchan", "Lickitung", "Koffing", "Weezing", "Rhyhorn",
"Rhydon", "Chansey", "Tangela", "Kangaskhan", "Horsea", "Seadra", "Goldeen", "Seaking", "Staryu", "Starmie", "Mr. Mime",
"Scyther", "Jynx", "Electabuzz", "Magmar", "Pinsir", "Tauros", "Magikarp", "Gyarados", "Lapras", "Ditto", "Eevee", "Vaporeon",
"Jolteon", "Flareon", "Porygon", "Omanyte", "Omastar", "Kabuto", "Kabutops", "Snorlax", "Porygo Z", "Dragonair", "Dratini", "Absol", "Altaria", "Baltoy", "Claydol", "Buneary", "Beldum", "Metang", "Metagross", "Camerupt", "Carnivine", "Carvanha", "Sharpedo", "Croagunk", "Toxicroak", "Buizel", "Floatzel", "Gabite", "Gible", "Gliscor", "Honchkrow", "Luxray", "Mamoswine", "Pachirisu", "Plusle", "Minun", "Probopass", "Purugly", "Froslass", "Glalie", "Snorunt", "Lunatone", "Solrock", "Staraptor", "Tropius", "Yanmega", "Zangoose", "Rhyperior", "Gastrodon", "Typhlosion", "Quilava", "Cyndaquil", "Chikorita", "Meganium", "Bayleef", "Totodile", "Croconaw", "Feraligatr"
}
local raros = {"Articuno", "Zapdos", "Moltreas", "Mew", "Mewtwo", "Dragonite", "Aerodactyl"}
local function doPokemonRegisterLevel(cid)
if not isCreature(cid) then return true end
if getWildPokemonLevel(cid) == -1 then
setWildPokemonLevel(cid)
end
end
local function doSetRandomGender(cid)
if not isCreature(cid) then return true end
local gender = 0
local name = getCreatureName(cid)
if not newpokedex[name] then return true end
local rate = newpokedex[name].gender
if rate == 0 then
gender = 3
elseif rate == 1000 then
gender = 4
elseif rate == -1 then
gender = 0
elseif math.random(1, 1000) <= rate then
gender = 4
else
gender = 3
end
doCreatureSetSkullType(cid, gender)
end
local function doShiny(cid)
if isCreature(cid) then
if isSummon(cid) then return true end
if getPlayerStorageValue(cid, 74469) >= 1 then return true end
if isInArray(shinys, getCreatureName(cid)) then
transform = math.random(1, 1000) --0,1% chance
elseif isInArray(raros, getCreatureName(cid)) then
transform = math.random(1, 1000) --100% chance
elseif not isInArray(raros, getCreatureName(cid)) and not isInArray(shinys, getCreatureName(cid)) then
return true
end
if transform == 1 then
doSendMagicEffect(getThingPos(cid), 18)
local shi = doCreateMonster("Shiny ".. getCreatureName(cid) .."", getThingPos(cid))
setPlayerStorageValue(shi, 74469, 1)
setPlayerStorageValue(cid, 74469, 1)
doRemoveCreature(cid)
else
setPlayerStorageValue(cid, 74469, 1)
end
else
return true
end
end
function onSpawn(cid)
registerCreatureEvent(cid, "GeneralConfiguration")
registerCreatureEvent(cid, "DirectionSystem")
registerCreatureEvent(cid, "CastSystem")
if isSummon(cid) then
registerCreatureEvent(cid, "SummonDeath")
return true
end
registerCreatureEvent(cid, "Experience")
addEvent(doPokemonRegisterLevel, 5, cid)
addEvent(doSetRandomGender, 5, cid)
addEvent(doShiny, 10, cid)
return true
end

 

 

Agora é so modificar:

local function doSetRandomGender(cid)
if not isCreature(cid) then return true end
local gender = 0
local name = getCreatureName(cid)
if not newpokedex[name] then return true end
local rate = newpokedex[name].gender
if rate == 0 then
gender = 3
elseif rate == 1000 then
gender = 4
elseif rate == -1 then
gender = 0
elseif math.random(1, 1000) <= rate then
gender = 4
else
gender = 3
end
doCreatureSetSkullType(cid, gender)
end
local function doShiny(cid)
if isCreature(cid) then
if isSummon(cid) then return true end
if getPlayerStorageValue(cid, 74469) >= 1 then return true end
if isInArray(shinys, getCreatureName(cid)) then
transform = math.random(1, 1000) --0,1% chance
elseif isInArray(raros, getCreatureName(cid)) then
transform = math.random(1, 1000) --100% chance
elseif not isInArray(raros, getCreatureName(cid)) and not isInArray(shinys, getCreatureName(cid)) then
return true
end

 

Oque Modificar?

elseif rate == 1000 then

elseif math.random(1, 1000) <= rate then

transform = math.random(1, 1000) --0,1% chance

 

Espero Ter Ajudado!

Atenciosamente, Stigal.

Link para o comentário
Compartilhar em outros sites

  • 3 weeks later...

Boa Tarde...

 

eu gostaria de saber c vcs poderiam me mandar um duel system que funcione, pois o que veio com o serv, quando da duel, naum da pra atackar os pokes...

 

Desde já Agradeço... VALENDO REP+

Usuario você ja testou o servidor PDA 1.7?

ele ja vme com as melhorias do meu so que bem mais atualisado

o meu mapa mais completo e tudo mais

 

da uma olhada, o slicer feiz um otimo trabalho.

Link para o comentário
Compartilhar em outros sites

mas... no do slicer 1.7 tem mt + bug do que o seu

O do slicer 1.7 não tem mais bugs que o do Stigal, é quase o mesmo servidor só que o do slicer tem algumas coisas a mais.

você deve ter feito algo errado

se for o sem level, veja se baixou na ordem correta

PDA By Slicer Without Level System v1.6

Patch 1.6.1

Patch 1.7

Link para o comentário
Compartilhar em outros sites

Slicer fez um otimo trabalho no 1.7

Tem muitos mais modulos entao isso pode ocasionar uns erros (coisa que o meu tem tbm).

 

O Mapa mais atualisado, Scripts mais aperfeiçoada, novas coisas e etc...

Mas isso vem de cada pessoa, espero que tenha gostado do meu ^^

Link para o comentário
Compartilhar em outros sites

  • 3 weeks later...

MAn o client que vc posto aew so pega com o ip 127.0.0.1 como troco ele pro meu fis um proprio mas n tem a colwdon bar nem a pokemon bar ai quero q se mi fale como eu troco o ip do seu client pf ok blz desculpe se tem erros dede deslocado

Para colocar a barra de cooldown você tem que hookar a dll no client
Link para o comentário
Compartilhar em outros sites

  • 2 weeks later...
  • 2 weeks later...
  • 2 weeks later...

Pelo que li no tópico todo, não há como utilizar o client que você disponibilizou para outras pessoas entrarem no servidor, certo? Rodei o servidor direto no dedicado e baixei o client achando que teria alguma opção de colocar o ip ou usar ipchanger, mas pelo visto não tem, né?

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...