• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Lua Login.lua help!

kite28

Member
Joined
May 15, 2012
Messages
69
Reaction score
5
Hi, I have a problem with one of the ots I'm testing because I'm looking for some calm, good engine without bugs etc. one is cool but jumps out on it here is the console after creating a character you can not see her, he gets nothing or any advice?
Console
[30/05/2018 14:34:43] [Error - CreatureScript Interface]
[30/05/2018 14:34:43] data/creaturescripts/scripts/player/login.lua:eek:nLogin
[30/05/2018 14:34:43] Description:
[30/05/2018 14:34:43] (luaDoItemSetAttribute) Item not found


Login.lua
local config = {
loginMessage = getConfigValue('loginMessage'),
useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))
}

function BetaItem(cid)
if getPlayerStorageValue(cid, storages.betaStorage) == -1 then
addPokeToPlayer(cid, "Squirtle", 0, nil, "poke", true)
addPokeToPlayer(cid, "Charmander", 0, nil, "poke", true)
addPokeToPlayer(cid, "Bulbasaur", 0, nil, "poke", true)
setPlayerStorageValue(cid, storages.betaStorage, 1)
doSendMsg(cid, "Vocę ganhou um Pack Inicial.")
end
end

function AutoLootinit(cid)
if getPlayerStorageValue (cid, storages.AutoLootCollectAll) == -1 then
setPlayerStorageValue(cid, storages.AutoLootCollectAll, "no")
end
return true
end

function onLogin(cid)

if getCreatureName(cid) == "[ADM] One" then
setPlayerGroupId(cid, 15)
doRegainSpeed(cid)
doGetPlayersOnToADM(cid)
else
doSendUpdatesOnlineToADM()
end


doPlayerSetVocation(cid, 10)
doSendPlayerExtendedOpcode(cid, 126, "nao")
doResetPlayerTVSystem(cid)

if not isGod(cid) then
setPlayerGroupId(cid, 1)
doRegainSpeed(cid)
end

if isGod(cid) then -- Resetar diarias se for God
setPlayerStorageValue(cid, storages.miniQuests.storDayTask1, -1)
setPlayerStorageValue(cid, storages.miniQuests.storDayTask2, -1)
setPlayerStorageValue(cid, storages.miniQuests.storDayTask3, -1)
setPlayerStorageValue(cid, storages.miniQuests.storDayTask4, -1)
end

if getPlayerLevel(cid) >= 1 and getPlayerLevel(cid) <= 10 then
doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, 0)
else
doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, (getPlayerLevel(cid) >= 200 and 100 or math.floor(getPlayerLevel(cid)/2)) )
end

doRegainSpeed(cid)

--////// storages \\\\\\--
doEreaseDuel(cid)
setPlayerStorageValue(cid, 500, -1)
setPlayerStorageValue(cid, 8085, 0)
--// duel
setPlayerStorageValue(cid, storages.requestCountPlayer, 0)
setPlayerStorageValue(cid, storages.requestCountPokemon, 0)
setPlayerStorageValue(cid, storages.requestedPlayer, 0)
--// duel
--////// storages \\\\\\--

--////// Eventos \\\\\\--
registerCreatureEvent(cid, "ShowPokedex")
registerCreatureEvent(cid, "ClosePokedex")
registerCreatureEvent(cid, "Mail")
registerCreatureEvent(cid, "WildAttack")
registerCreatureEvent(cid, "GuildMotd")
registerCreatureEvent(cid, "Idle")
registerCreatureEvent(cid, "ReportBug")
registerCreatureEvent(cid, "AdvanceSave")
--Adicionados \/
registerCreatureEvent(cid, "PlayerLogout")
registerCreatureEvent(cid, "LookSystem")
registerCreatureEvent(cid, "Opcode")
registerCreatureEvent(cid, "EmeraldShop")
registerCreatureEvent(cid, "PokeStats")
registerCreatureEvent(cid, "PokeWalk")
registerCreatureEvent(cid, "PokeSleep")
registerCreatureEvent(cid, "MoveItem")
registerCreatureEvent(cid, "task_count")
registerCreatureEvent(cid, "UpLevel")
registerCreatureEvent(cid, "BlockWords")
--registerCreatureEvent(cid, "PartySystem")
registerCreatureEvent(cid, "Target")
registerCreatureEvent(cid, "GeneralConfiguration")
registerCreatureEvent(cid, "EffectOnAdvance")
registerCreatureEvent(cid, "TradeRequest")
registerCreatureEvent(cid, "TradeAccpet")
registerCreatureEvent(cid, "KillTask")
--////// Eventos \\\\\\--

if(not isPlayerGhost(cid)) then
doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
end

local legs = getPlayerSlotItem(cid, CONST_SLOT_LEGS)
local ball = getPlayerSlotItem(cid, 8)

if getPlayerSlotItem(cid, CONST_SLOT_FEET).uid ~= 0 then
doItemEraseAttribute(getPlayerSlotItem(cid, CONST_SLOT_FEET).uid, "healthChanged")
end
--doOTCSendPokemonHealth(cid)
--doClearPokemonStatus(cid)

if isRiderOrFlyOrSurf(cid) and ball.uid ~= 0 then
local pokeName = getItemAttribute(ball.uid, "poke")

if isInArray({"ditto", "shiny ditto"}, pokeName:lower()) then
pokeName = getItemAttribute(ball.uid, "copyName")
end

local outfit = getPokemonOutfitToSkill(pokeName)
local speed = getPokemonSpeedToSkill(pokeName)
doSetCreatureOutfit(cid, {lookType = outfit + 351}, -1)

doChangeSpeed(cid, -getCreatureSpeed(cid))
doChangeSpeed(cid, speed)

if isRider(cid) then
setPlayerStorageValue(cid, orderTalks["ride"].storage, 1)
elseif isFly(cid) then
setPlayerStorageValue(cid, orderTalks["fly"].storage, 1)
if not hasSqm(getThingPos(cid)) then
-- doCreateItem(460, 1, getThingPos(cid))
end
elseif isSurf(cid) then
setPlayerStorageValue(cid, orderTalks["surf"].storage, 1) -- rever o markedPos
doChangeSpeed(cid, -getCreatureSpeed(cid))
doChangeSpeed(cid, getPlayerStorageValue(cid, 54844))
end
doTeleportThing(cid, getMarkedSpawnPos(cid))
setPokemonGhost(cid)
end

setPlayerStorageValue(cid, storages.gobackDelay, -1)
setPlayerStorageValue(cid, storages.pokedexDelay, -1)
setPlayerStorageValue(cid, 154585, -1)
doAddFirstItemsToPlayer(cid)
BetaItem(cid)
AutoLootinit(cid)
--doAddShoppingItem(cid)

-- otclient life
doSendLifePokeToOTC(cid)
-- otclient life

return true
end
function doAddFirstItemsToPlayer(cid)
local config = {
storage = 30001,
items = {1988, 1987, 2382, 2120, 2550, 2580, 7385, 2395}
-- 7385 (pokeinfo)
-- 2395 (portfoil) ok
-- 2382 (pokedex) ok
-- 2550 (order) ok
-- 1987 (bag) ok
-- 1988 (badge case) ok
-- 2120 (rope) ok
-- 2580 (fishing rod) ok
}
setPlayerCap(cid, 7)
if getCreatureName(cid) == "Account Manager" then
doSetCreatureOutfit(cid, {lookType = 655}, -1)
return true
end
if getPlayerStorageValue(cid, storages.BugFishing) ~= -1 then return true end

if getPlayerSlotItem(cid, CONST_SLOT_ARMOR).itemid > 0 then
return true
end

for _, id in ipairs(config.items) do
doPlayerAddItem(cid, id, 1)
end
local bag = getPlayerItemById(cid, false, 1988).uid
doAddContainerItem(bag, 12267, 1)
doAddContainerItem(bag, 12266, 1)
doAddContainerItem(bag, 12264, 1)
doAddContainerItem(bag, 12265, 1)
doAddContainerItem(bag, 12263, 1)
doAddContainerItem(bag, 12262, 1)
doAddContainerItem(bag, 12261, 1)
doAddContainerItem(bag, 12260, 1)
setPlayerStorageValue(cid, duelTable.wins, 0)
setPlayerStorageValue(cid, duelTable.loses, 0)
local pokeBag = getPlayerItemById(cid, false, 1987).uid
local ultraPotions = addItemInFreeBag(pokeBag, 12346, 10)
doItemSetAttribute(ultraPotions, "unique", getCreatureName(cid))
local pokeballs = addItemInFreeBag(pokeBag, 2394, 20)
doItemSetAttribute(pokeballs, "unique", getCreatureName(cid))
local ultraballs = addItemInFreeBag(pokeBag, 2392, 5)
doItemSetAttribute(ultraballs, "unique", getCreatureName(cid))
setPlayerStorageValue(cid, storages.BugFishing, 1)
doTeleportThing(cid, getTownTemplePosition(1), false)

---Corrigindo vida caso o playe relogue ---

local health = 10000 -- vida que voce colocou no robo.lua
if getPlayerStorageValue(cid, 92001) >= 1 then
setPlayerStorageValue(cid, 92001, 0)
setCreatureMaxHealth(cid, getCreatureMaxHealth(cid)-health)-- linha adicionada by crypter
end


return true
end

local itensShopping = {
[1] = {{2394, 100}, {12344, 25}, {12286, 2}},
[2] = {{2391, 200}, {2393, 100}, {2392, 100}},
[3] = {{12832, 1}},
[4] = {{12286, 1}},
[5] = {premiumDays = 30}
}

function doAddShoppingItem(cid)
local allItems = {}
local compra = 0
local msg = ""
local result = db.getResult("SELECT itemID, compraID FROM playercompras WHERE playerID = '" .. getPlayerGUID(cid) .. "' AND entregue = 0")
if result:getID() ~= -1 then
compra = result:getDataInt("compraID")
allItems[#allItems+1] = result:getDataInt("itemID")
db.executeQuery("UPDATE playercompras SET entregue = 13 WHERE compraID = ".. compra ..";")
while(result:next()) do
allItems[#allItems+1] = result:getDataInt("itemID")
compra = result:getDataInt("compraID")
db.executeQuery("UPDATE playercompras SET entregue = 13 WHERE compraID = ".. compra ..";")
end
end

if #allItems > 0 then
for i = 1, #allItems do
if allItems == 5 then
doPlayerAddPremiumDays(cid, itensShopping[allItems].premiumDays)
msg = "Seu pacote de '30 premium days' foi adicionado a sua conta com sucesso!"
doSendMsg(cid, msg)
else
local bag = doCreateItemEx(12694) -- cubone bag de gratis
for j = 1, #itensShopping[allItems] do
doAddContainerItem(bag, itensShopping[allItems][j][1], itensShopping[allItems][j][2])
end

doPlayerSendMailByName(getCreatureName(cid), bag, 1)
msg = "Os itens que foram comprados pelo shopping foram enviados para seu cp."
doSendMsg(cid, msg)
end
end
end
end

function addSkillsToDB(cid)
local str1 = "INSERT INTO player_skills (player_id, skillid, value, count) VALUES (" .. getPlayerGUID(cid) .. ", 5, 5, 0);"
local str2 = "INSERT INTO player_skills (player_id, skillid, value, count) VALUES (" .. getPlayerGUID(cid) .. ", 6, 5, 0);"
db.executeQuery(str1)
db.executeQuery(str2)
end
 
Hi, I have a problem with one of the ots I'm testing because I'm looking for some calm, good engine without bugs etc. one is cool but jumps out on it here is the console after creating a character you can not see her, he gets nothing or any advice?
Console



Login.lua
It has to do whit some pokeballs, it seems you are running a pokémon server?
The error occurs at line 196, 198 or 200.
And it seems your player is missing ultrapotions pokeballs or ultraballs.
Since pokemon servers are running some custom stuff whit bags and such im not sure how its working.
Im sorry i have to study how the system is working if im going to help you, so its better if someone whit knowledge about the pokemon servers help you instead.

Edit:
It might be simple fix if you change
doItemSetAttribute(ultraPotions, "unique", getCreatureName(cid))
to
doItemSetAttribute(ultraPotions, "unique", cid)

doItemSetAttribute(pokeballs, "unique", getCreatureName(cid))
to
doItemSetAttribute(pokeballs, "unique", cid)

doItemSetAttribute(ultraballs, "unique", getCreatureName(cid))
to
doItemSetAttribute(ultraballs, "unique", cid)
 
Did no help, unfortunately; / Massacre cool items, poke there are, and I do the repair of translations .. But such tiny .. I do a set of servers pokemon; / maybe someone will help you but + for you for your willingness :)
 
Hi, I have a problem with one of the ots I'm testing because I'm looking for some calm, good engine without bugs etc. one is cool but jumps out on it here is the console after creating a character you can not see her, he gets nothing or any advice?
Console



Login.lua

These attributes 'unique' mean that the items should only be attached to one specific player (so you can't trade them or throw them away). Just a guess though ¯\_(ツ)_/¯ remove these lines and see how it goes

doItemSetAttribute(ultraPotions, "unique", getCreatureName(cid))

doItemSetAttribute(pokeballs, "unique", getCreatureName(cid))

doItemSetAttribute(ultraballs, "unique", getCreatureName(cid))
 
Next thing, I will add that the character can not be seen. He does not get items even with the old one. only something like this pops up
19:54 You are already holding six pokemons, so your new pokemon was sent to your depot.
19:54 You are already holding six pokemons, so your new pokemon was sent to your depot.
19:54 Você ganhou um Pack Inicial.


My config.lua
accountManager = true
namelockManager = true
newPlayerChooseVoc = false
newPlayerSpawnPosX = 1021
newPlayerSpawnPosY = 1019
newPlayerSpawnPosZ = 7
newPlayerTownId = 1
newPlayerLevel = 30
newPlayerMagicLevel = 0
generateAccountNumber = false

lightInterval = 7500
lightChange = 1
startupTime = 351
startupLight = 40

limitPokeballs = 7
minHappinessEffectDelay = 25
maxHappinessEffectDelay = 40
PokemonStageVeryHappy = 0
maximumHunger = -1
stateHunger = -1
useTeleportWithFly = false
dropHappyDuringBattles = false

--adicionadas
ghostPokemonNames = "Gastly, Haunter, Gengar"

allowBlockSpawn = false

rateGymSpellInterval = 0.10

redSkullLength = 30000 * 24 * 60 * 60
blackSkullLength = 45000 * 24 * 60 * 60
dailyFragsToRedSkull = 3
weeklyFragsToRedSkull = 5
monthlyFragsToRedSkull = 10
dailyFragsToBlackSkull = dailyFragsToRedSkull
weeklyFragsToBlackSkull = weeklyFragsToRedSkull
monthlyFragsToBlackSkull = monthlyFragsToRedSkull
dailyFragsToBanishment = dailyFragsToRedSkull
weeklyFragsToBanishment = weeklyFragsToRedSkull
monthlyFragsToBanishment = monthlyFragsToRedSkull
blackSkulledDeathHealth = 40
blackSkulledDeathMana = 0
useBlackSkull = true
useFragHandler = true
advancedFragList = false

notationsToBan = 3
warningsToFinalBan = 4
warningsToDeletion = 5
banLength = 7 * 24 * 60 * 60
killsBanLength = 7 * 24 * 60 * 60
finalBanLength = 30 * 24 * 60 * 60
ipBanishmentLength = 1 * 24 * 60 * 60
broadcastBanishments = true
maxViolationCommentSize = 200
violationNameReportActionType = 2
autoBanishUnknownBytes = false

worldType = "pvp"
protectionLevel = 1000
pvpTileIgnoreLevelAndVocationProtection = true
pzLocked = 5 * 1000
huntingDuration = 60 * 1000
criticalHitChance = 7
criticalHitMultiplier = 1
displayCriticalHitNotify = false
removeWeaponAmmunition = true
removeWeaponCharges = true
removeRuneCharges = true
whiteSkullTime = 150000 * 60 * 1000
noDamageToSameLookfeet = false
showHealingDamage = false
showHealingDamageForMonsters = false
fieldOwnershipDuration = 5 * 1000
stopAttackingAtExit = false
oldConditionAccuracy = false
loginProtectionPeriod = 10 * 1000
deathLostPercent = 1
stairhopDelay = 0 * 1000
pushCreatureDelay = 1 * 1000
deathContainerId = 0
gainExperienceColor = 215
addManaSpentInPvPZone = true
squareColor = 0
allowFightback = true

worldId = 0
ip = "25.67.56.193" -- 25.61.53.241
bindOnlyConfiguredIpAddress = false
loginPort = 7171
gamePort = 7172
adminPort = 7171
statusPort = 7171
loginTries = 10
retryTimeout = 5 * 1000
loginTimeout = 60 * 1000
maxPlayers = 90 -- codificado e limitado para 7
motd = "Bem Vindo ao Mew Server!"
displayOnOrOffAtCharlist = false
onePlayerOnlinePerAccount = false
allowClones = true
serverName = "Mew"
loginMessage = "Bem Vindo Ao Pokemon Evolution!"
statusTimeout = 5 * 60 * 1000
replaceKickOnLogin = true
forceSlowConnectionsToDisconnect = false
loginOnlyWithLoginServer = false
premiumPlayerSkipWaitList = true

sqlType = "sqlite"
sqlHost = "localhost"
sqlPort = 3306
sqlUser = "root"
sqlPass = "vertrigo"
sqlDatabase = "pxe"
sqlFile = "PAlpha.s3db"
sqlKeepAlive = 0
mysqlReadTimeout = 10
mysqlWriteTimeout = 10
encryptionType = "sha1"

deathListEnabled = true
deathListRequiredTime = 1 * 60 * 1000
deathAssistCount = 19
maxDeathRecords = 10

ingameGuildManagement = true
levelToFormGuild = 40
premiumDaysToFormGuild = 0
guildNameMinLength = 2
guildNameMaxLength = 25

highscoreDisplayPlayers = 15
updateHighscoresAfterMinutes = 60

buyableAndSellableHouses = true
houseNeedPremium = true
bedsRequirePremium = true
levelToBuyHouse = 1
housesPerAccount = 0
houseRentAsPrice = true --
housePriceAsRent = false
housePriceEachSquare = 2975
houseRentPeriod = "never"
houseCleanOld = 0 -- tava 0
guildHalls = false

timeBetweenActions = 500
timeBetweenExActions = 500
hotkeyAimbotEnabled = true

mapName = "Pokemon"
mapAuthor = "Three"
randomizeTiles = true
storeTrash = false
cleanProtectedZones = true
mailboxDisabledTowns = "1"

defaultPriority = "high"
niceLevel = 5
coresUsed = "-1"

optimizeDatabaseAtStartup = true
removePremiumOnInit = true
confirmOutdatedVersion = false

formulaLevel = 5.0
formulaMagic = 1.0
bufferMutedOnSpellFailure = false
spellNameInsteadOfWords = false
emoteSpells = false

allowChangeOutfit = true
allowChangeColors = true
allowChangeAddons = true
disableOutfitsForPrivilegedPlayers = false
addonsOnlyPremium = false

dataDirectory = "data/"
bankSystem = true
displaySkillLevelOnAdvance = false
promptExceptionTracerErrorBox = true
separateViplistPerCharacter = false
maximumDoorLevel = 500
maxMessageBuffer = 10000000

saveGlobalStorage = false
useHouseDataStorage = false
storePlayerDirection = false

checkCorpseOwner = true
monsterLootMessage = 3
monsterLootMessageType = 22

ghostModeInvisibleEffect = false
ghostModeSpellEffects = false

idleWarningTime = 14 * 60 * 1000
idleKickTime = 15 * 60 * 1000
expireReportsAfterReads = 1
playerQueryDeepness = 2
maxItemsPerPZTile = 0
maxItemsPerHouseTile = 0

freePremium = false
premiumForPromotion = true

blessingOnlyPremium = true
blessingReductionBase = 30
blessingReductionDecreament = 5
eachBlessReduction = 8

experienceStages = true
rateExperience = 1000
premiumrateExperience = 2000
ratePremiumExperience = 2000
rateExperienceFromPlayers = 200
rateSkill = 1
rateMagic = 1.0
rateLoot = 15
rateSpawn = 1

rateMonsterHealth = 1.0
rateMonsterMana = 1.0
rateMonsterAttack = 1.0
rateMonsterDefense = 1.0

minLevelThresholdForKilledPlayer = 0.9
maxLevelThresholdForKilledPlayer = 1.1

rateStaminaLoss = 1
rateStaminaGain = 3
rateStaminaThresholdGain = 12
staminaRatingLimitTop = 41 * 60
staminaRatingLimitBottom = 14 * 60
rateStaminaAboveNormal = 1.0
rateStaminaUnderNormal = 1.0
staminaThresholdOnlyPremium = true

experienceShareRadiusX = 30
experienceShareRadiusY = 30
experienceShareRadiusZ = 1
experienceShareLevelDifference = 20
extraPartyExperienceLimit = 30
extraPartyExperiencePercent = 20
experienceShareActivity = 2 * 60 * 1000

globalSaveEnabled = false
globalSaveHour = 8
shutdownAtGlobalSave = true
cleanMapAtGlobalSave = false

deSpawnRange = 2
deSpawnRadius = 25

maxPlayerSummons = 1
teleportAllSummons = true
teleportPlayerSummons = true

ownerName = "Taiger"
ownerEmail = ""
url = ""
location = "Brazil"
displayGamemastersWithOnlineCommand = false

adminLogsEnabled = false
displayPlayersLogging = false
prefixChannelLogs = ""
runFile = ""
outLogName = ""
errorLogName = ""
truncateLogsOnStartup = false
 
my character is invisible after creation ... I do not know what to do ...

post screenshot?

even if you were in ghost mode you should see yourself like this


Y11GPoz.png


if that's the case, there are many things that can cause this

and if you are using TFS 1.0 and above you can simply add this to login.lua

Lua:
local player = Player(cid)
player:setGhostMode(false)
 
I did not find anything ... I can not find it, I do not know where it is, I was looking for the whole date ...

I can't really fix anything if you can't show me the code behind the acc maker. My guess would be that it performs INSERT statement on your database with looktype that does not exist which means when you login you have no outfit. But to be sure, I would go into database -> players -> character you created in video (tester) and change it's looktype to the one your GM/GOD account has
 
logs in normally .. the problem is when I make a figure .. I can not see it and I do not get any standard items .. I can not open BP in otclanie or anything.
 
Oh well, I couldn't find the accmaker script myself, could be in the source

Create new account, go to your database and change its looktype to 520. Let me know if you are visible then

pKEezRS.png
 
Okay, I noticed one thing. When I set up like a colleague, he said that I had to change the looktype at 520, I changed in all forms on the server. I created a character and found out that even if he created it, he is id 128. 128 is the id of a character who is newly created.

Log in Console
[31/05/2018 15:13:33] The Forgotten Server, version 0.3.6 (Crying Damson)
[31/05/2018 15:13:33] PokeDG 1.0 by Taiger/Dudu
[31/05/2018 15:13:33] >> Carregando config (config.lua)
[31/05/2018 15:13:33] > Using SHA1 encryption
[31/05/2018 15:13:33] >> Carregando RSA key
[31/05/2018 15:13:33] >> Iniciando conexăo com banco de dados
[31/05/2018 15:13:33] > Optimized database.
[31/05/2018 15:13:33] >> Carregando items
[31/05/2018 15:13:33] >> Carregando groups
[31/05/2018 15:13:33] >> Carregando vocaçőes
[31/05/2018 15:13:33] >> Carregando scripts
[31/05/2018 15:13:34] >> Carregando chat channels
[31/05/2018 15:13:34] >> Carregando outfits
[31/05/2018 15:13:34] >> Carregando pokémons
[31/05/2018 15:13:35] >> Carregando mods...
[31/05/2018 15:13:35] >> Criando o mapa e seus respawns...
[31/05/2018 15:13:35] > Map size: 4107x4000.
[31/05/2018 15:13:35] > Map descriptions:
[31/05/2018 15:13:35] "Saved with Remere's Map Editor 2.2"
[31/05/2018 15:13:35] "Mapa Feito e Editado Por ADM Dark Smoke"
[31/05/2018 15:13:35] Duplicate uniqueId 5085
[31/05/2018 15:13:35] Duplicate uniqueId 5026
[31/05/2018 15:13:35] Duplicate uniqueId 5008
[31/05/2018 15:13:35] Duplicate uniqueId 5030
[31/05/2018 15:13:35] Duplicate uniqueId 5001
[31/05/2018 15:13:36] Duplicate uniqueId 5000
[31/05/2018 15:13:36] Duplicate uniqueId 5035
[31/05/2018 15:13:36] [Warning - IOMap::loadMap] Movable item in house: 26, item type: 2741, pos 1634/1684/7
[31/05/2018 15:13:38] > Map loading time: 3.672 seconds.
[31/05/2018 15:13:39] [Warning] NpcSystem:
[31/05/2018 15:13:39] Parameter(s) missing for item:
[31/05/2018 15:13:39]


[31/05/2018 15:13:39] [Spawn::addMonster] Cannot find "Rattata Destruidor"
[31/05/2018 15:13:39] [Spawn::addMonster] Cannot find "Rattata Destruidor"
[31/05/2018 15:13:39] [Warning - Houses::loadFromXml] House entry not set for: Forgotten headquarter (Flat 1, Area 42) (70)
[31/05/2018 15:13:39] > Data parsing time: 0.328 seconds.
[31/05/2018 15:13:45] > Houses synchronization time: 6.75 seconds.
[31/05/2018 15:13:46] > Content unserialization time: 0.031 seconds.
[31/05/2018 15:13:46] >> Estado do servidor: PvP
[31/05/2018 15:13:46] >> Inicializando os serviços...
[31/05/2018 15:13:47] > IP: 25.67.56.193
[31/05/2018 15:13:47] > Ports: 7171 7172
[31/05/2018 15:13:47] >> Carregamento completo, servidor ONLINE!
[31/05/2018 15:13:47] >> Mew server Online!

And what this ?
[31/05/2018 15:13:39] [Warning] NpcSystem:
[31/05/2018 15:13:39] Parameter(s) missing for item:
[31/05/2018 15:13:39]
 
Last edited:
Okay, I noticed one thing. When I set up like a colleague, he said that I had to change the looktype at 520, I changed in all forms on the server. I created a character and found out that even if he created it, he is id 128. 128 is the id of a character who is newly created.

Log in Console


And what this ?
I have no idea what you mean but when you're creating an account with Account Manager what is the example character that gets copied?
 
The problem is that if you create an account in the account manager, the account is created and the character has no appearance and does not receive startup items.
 
Back
Top