• 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!

Solved Potion causing debug

70011983

Ners
Joined
Nov 21, 2011
Messages
354
Solutions
1
Reaction score
56
Location
Croatia
Hello,
I'm using an 8.54 server, I've made the potions stackable, they work fine, but whenever I create a great spirit potion, it crashes the client. I don't think it's the potions.lua because other potions work alright but this one. Checked dat and otb file and I didn't find any difference between GSP and other potions. Any idea on whats wrong?
 
I got an otb editor because Im adding my own items in the server, but I dont see any differences in the otb file for this potion and other potions.
 
try removing temporaly this on your script and test
Code:
doCreatureSay(itemEx.uid, "Aaaah...", TALKTYPE_ORANGE_1, false, tid)

Maybe you dont have defined TALKTYPE_ORANGE_1 correctly on you 050-function.lua
 
Have you tried another otb file? If its when you create it its either items: otb, xml.
 
NVM, fixed it, the problem was in this:
Code:
[8472] = {empty = 7635, splash = 3, health = {200, 400}, mana = {110, 190}, level = 80, vocations = {3, 7, 11}, vocStr = "paladins"} -- great spirit potion
I just changed splash from 3 to 7 like it is for mana potions and now I can create them with no crashes. Dunno why that's there, you can't miss click potions like you did once and see that "pool of manafluid" etc..
 
NVM, fixed it, the problem was in this:
Code:
[8472] = {empty = 7635, splash = 3, health = {200, 400}, mana = {110, 190}, level = 80, vocations = {3, 7, 11}, vocStr = "paladins"} -- great spirit potion
I just changed splash from 3 to 7 like it is for mana potions and now I can create them with no crashes. Dunno why that's there, you can't miss click potions like you did once and see that "pool of manafluid" etc..

In that case its what most of us have been saying, its your items.otb that's corrupted.
 
Im having the same problem...

Code:
Last Packet Types: 100 110 109 131 160 180 109 030 109 131
Last Packet: 110 000 037 011 003 000 098 097 103 008 000 001 218 029 100 000
Player Position: [32095,32209,7]
Player Name: Testing Dude (Online)
Player Action: 056 051 046 049 051 049 046 055 057 046 050 057 058 055 049 055 050
Player.cpp 361: exception occurred, reason:
Network.cpp 992: exception occurred (ErrorCode = 0), reason:
Control.cpp 1330: exception occurred (Type = 100) (MainWindow = 20551824), reason:
Communication.cpp 1640: exception occurred (PlayerX = 0) (PlayerY = 0), reason:
Network.cpp 513: exception occurred, reason:
Utils.cpp 501: assertion failed (Position = 23) (Size = 23), reason:
Position<=Size-2
Sat May 24 22:53:29 2014
Debug Assertion 8.54 Utils.cpp 501
 
Back
Top