Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

"Just for fun - Nothing to do" GM gear coupon :P

Junior Spellweaver
Joined
Jun 10, 2012
Messages
156
Reaction score
30
nope im getting this

Code:
Msg 8115, Level 16, State 2, Procedure _ADD_GM_GEAR, Line 29
Arithmetic overflow error converting expression to data type int.
Validating Character...
Validating Account ID...
Validating GM Level...
Validating race and gender...
Race code is: CH, gender code is: W.
Validating equipped weapon...
Checking if character is using shield...
Setting up item codenames...
Getting item reference ID and link...
Invalid item reference ID, check item codename (degree parameter or item suffix setting). Sequence canceled!
Msg 50000, Level 1, State 16
 
Experienced Elementalist
Joined
Aug 22, 2013
Messages
208
Reaction score
125
nope im getting this

"Invalid item reference ID, check item codename (degree parameter or item suffix setting). Sequence canceled!"

There, it's not SP error, but one of items there doesn't exist in your DB or Media, seems you didn't read the first post about "SETTINGS":

Stuff that NEEDED TO BE CHANGED in that NEW SP ("SETTINGS" section):
Code:
    -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
    -- @@@ BEGIN: SETTINGS
    
    -- CHANGE THIS! -- CHANGE THIS! -- CHANGE THIS! (if needed)

    -- (Represent ITEM_CH_BOW_11_SET_B_RARE), change as you need it
    DECLARE @GearSuffix VARCHAR(16) = 'SET_B_RARE'

    -- (Represent ITEM_ETC_AVATAR_W_GM_UNIFORM), change as you need it
    DECLARE @uniSuffix VARCHAR(16) = 'GM_UNIFORM'

    -- (Represent ITEM_MALL_AVATAR_W_NASRUN_S_BLUE), change as you need it
    DECLARE @DSSuffix VARCHAR(16) = 'NASRUN_S_BLUE'

    -- Represent custom title, change as you need it
    DECLARE @HwanLevel TINYINT = 9

    -- Change these if you want
    DECLARE @Strength INT = 10000
    DECLARE @Intellect INT = 10000
    DECLARE @RemainGold INT = 1000000000
    DECLARE @RemainSkillPoint INT = 15000000
    DECLARE @InventorySize INT = 93

    -- Gift Silk
    DECLARE @GiftSilk INT = 1000

    -- @@@ END: SETTINGS
    -- @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

BE SURE you change those settings to match your DB or Media, I think i put enough understandable comments about it.

Let me break it down, for example, if you set:

DECLARE @GearSuffix VARCHAR(16) = 'C_RARE'
Means it will represent: "ITEM_<race>_<item>_<degree>_C_RARE" (For example: ITEM_CH_BOW_11_C_RARE) <-- is this item exist?

Goes the same for other settings. Verify if your item exist.

Not Work i Tested it

y+1 pokemon i get this error too

Yep, it won't work for you (same invalid item reference code error) if you only copy-paste it without verifying if the ITEM EXIST in your db or Media :)

Weapon/gear/accessory, Devil Spirit, GM avatar represented by each codes must exist in your DB or Media
 
Last edited:
Junior Spellweaver
Joined
Jun 10, 2012
Messages
156
Reaction score
30
Oh wow thanks. Found the problem , never knew i did not have the "NASRUN_S_BLUE" or any of the 'S' versions.
 
Experienced Elementalist
Joined
Aug 22, 2013
Messages
208
Reaction score
125
I would change that to the original Devil S itemcode in your code on the first post so more people don't post the same errors consistently. ;)

I would, but still, whoever gonna use it must check either any of those items exist in their DB, not only about the devil spirit. Say we put general devil spirit in the example then they have problem with other items, it's just the same problem :p

Anyway, thank you :D
 
very nice
Joined
Jul 5, 2013
Messages
518
Reaction score
80
atleast fixed the query let's fix the scroll :D

This Scroll working for

witchymoo only!
 
Experienced Elementalist
Joined
Aug 22, 2013
Messages
208
Reaction score
125
atleast fixed the query let's fix the scroll :D

This Scroll working for

witchymoo only!

Well,

This Scroll is NOT working for

B1QB0SS only :p :p

so i'll try to do it again !

how to make sure AddLogItem Working ?!

Still Not Working!!


Any Solution ?


or Give Us your Scroll !

To make sure "_AddLogItem" working?.. simply query the _LogEventItem table

If your server didn't log anything, means the scroll will never work, goes the same with other scrolls made by other people that use same "return scroll" type method. see if _LogEventItem has records. You can test if it works or not by just using normal return scroll. If it's empty, means your server didn't log anything... that's entirely another matter.

If you do it correctly the scroll works fine.

+1 :)
 
Joined
Jan 15, 2009
Messages
692
Reaction score
128
Yeah, im getting the same issue they are having o_O

I'm guessing since my _LogEventItem tables are empty that it needs additional work in the new 110 BR database.

Validating Character...
Validating Account ID...
Validating race and gender...

Validating equipped weapon...
Checking if character is using shield...
Setting up item codenames...
Getting item reference ID and link...
Invalid item reference ID, check item codename (degree parameter or item suffix setting). Sequence canceled!
Msg 50000, Level 1, State 16

All the items exist in my SETTINGS values, so yeah its something to do with the Log database.
 
Experienced Elementalist
Joined
Aug 22, 2013
Messages
208
Reaction score
125
Hey there ;)

"Invalid item reference ID, check item codename (degree parameter or item suffix setting). Sequence canceled!"

If that error you got, means one of the item doesn't exist, either the gear item code, nasrun code, or gm avatar.

And about the _AddLogItem SP, if your server is VSRO 1.88 and the server didn't log anything, check if you use "Evangelion" SR_GameServer, if you're using it... as I wrote in first post, you have to set the server so it logs everything, simply by editing the "misc.ini" file and set "disableLog = 0", and restart game server ;)

My misc.ini file:
Code:
[misc]
disableMsg = 0
disableLog = 0
 
Joined
Jan 15, 2009
Messages
692
Reaction score
128
Yeah its weird tho, because my items defiently exist in both the DB and media, I can even spawn and use them ingame. And I'm not running Evangelion, don't think there's one for the latest 110 cap BR files.

Upon further inspection, after creating a chinese character and trying the scroll it worked. It seems its not working for female euro characters.
 
Experienced Elementalist
Joined
Aug 22, 2013
Messages
208
Reaction score
125
Yeah its weird tho, because my items defiently exist in both the DB and media, I can even spawn and use them ingame. And I'm not running Evangelion, don't think there's one for the latest 110 cap BR files.

Upon further inspection, after creating a chinese character and trying the scroll it worked. It seems its not working for female euro characters.

Or one of the female euro item don't exist :), as you can see in my video, I definitely use euro character.

Perhaps you can inform me what female euro char, what type of gear and weapon you failed to make? So i can make simulation of it
 
very nice
Joined
Jul 5, 2013
Messages
518
Reaction score
80
Okay in LogEventitem

Nothing!

can you give me Chernobyl SRGAMESERVER? :D

okay iam using evangelion Gameserver and disabelog=0

and restarted gameserver

and used the scroll

in LogEventItem Found Nothing!
 
Back
Top