naked charcter on creation HELP!

kk u hav echnaged teh zitem out to one taht isnt defined in stored procedures
open ur GunzDB
programability
go to stored procedures
dbo.spInsertChar - modify
ull see stuff liek this

/* Melee */
SET @MeleeItemID =
CASE @Costume
WHEN 0 THEN 1
WHEN 1 THEN 2
WHEN 2 THEN 1
WHEN 3 THEN 2
WHEN 4 THEN 2
WHEN 5 THEN 1
END



/* Primary */
SET @PrimaryItemID =
CASE @Costume
WHEN 0 THEN 5001
WHEN 1 THEN 5002
WHEN 2 THEN 4005
WHEN 3 THEN 4001
WHEN 4 THEN 4002
WHEN 5 THEN 4006
END

WHEN # is set chosen whne u creat a char
THEN # zitem number
u will haev to edit it for

/* Melee */
/* Primary */
/* Secondary */
/* Chest */
/* Legs */
you will need to change them accordingly
then execute or save it
 
Upvote 0
kk u hav echnaged teh zitem out to one taht isnt defined in stored procedures
open ur GunzDB
programability
go to stored procedures
dbo.spInsertChar - modify
ull see stuff liek this

/* Melee */
SET @MeleeItemID =
CASE @Costume
WHEN 0 THEN 1
WHEN 1 THEN 2
WHEN 2 THEN 1
WHEN 3 THEN 2
WHEN 4 THEN 2
WHEN 5 THEN 1
END



/* Primary */
SET @PrimaryItemID =
CASE @Costume
WHEN 0 THEN 5001
WHEN 1 THEN 5002
WHEN 2 THEN 4005
WHEN 3 THEN 4001
WHEN 4 THEN 4002
WHEN 5 THEN 4006
END

WHEN # is set chosen whne u creat a char
THEN # zitem number
u will haev to edit it for

/* Melee */
/* Primary */
/* Secondary */
/* Chest */
/* Legs */
you will need to change them accordingly
then execute or save it

Ime sorry but i dont actually get it.. i see that
if option is "lol" then item "noob"
but i dont get what is wrong..
this happens when i use specific zitem etc...
 
Upvote 0
Ime sorry but i dont actually get it.. i see that
if option is "lol" then item "noob"
but i dont get what is wrong..
this happens when i use specific zitem etc...
its happening because the zitem number in the procedures isnt part of ur zitem.xml anymore so it cnat choose that item... u hav eto fix that via stored procedures or find the original zitem numbers and change them in ur zitem.xml
example lets say this is teh zitem # for rex 5001 and its part of the first set u can choose which is 0
WHEN 0 THEN 5001
when u select it its selecting zitem number 5001 for that section and equipping it if it odenst exist in ur zitem it cant put it in ur iventory....
so u have to chnaged it to ur new zitem number lets say its 6000 now then u simply do this
WHEN 0 THEN 6000 and itl put zitem # 6000 in ur inventory when u select the first option for sets when u make a char
 
Upvote 0
Back