How to add items in Exengine shop ! i will pay for guid !

Status
Not open for further replies.
Hellow mybe someone can tel me how to add items in exengine shop ! and if that forks I will pay for it 10 $

Haven't used ExEngine, but base on code

check core/db/shop.db

Code:
169|0|22|0|500|Bone Blade|

Unique ID -> Item Group -> Item ID -> 0 (?) - Price -> Name

So open using notepad & add new entrys if ExEngine you use doesn't have manager to do it.
 
Upvote 0
i try it befor ! no changes !

mybe you can invite me in skype and help ? i will pay for than offcorse

only show me how !

No need $ for 1 min help :)

Thanks verified code more carefully and here we go.

After you add item at core/db/shop.db

Make sure item exist at core/db/items.db (if not then add) ofc WITH CORRECT SIZE !important!

Example

shop.db
217|0|42|0|99999|4FUNer Approve|
items.db
42|0|42|2|4|4FUNer Approve|0|1|0|104|130|35|0|0|93|0|135|62|9|0|0|0|0|0|1|0|0|0|-|-|

i7twfUk - How to add items in Exengine shop ! i will pay for guid ! - RaGEZONE Forums



also items2.db (not sure if for webshop or item info, test :))

[0]UID,
[1]TYPE,
[2]ID,
[3]X,
[4]Y,
[5]NAME,
[6]EXE_TYPE,
[7]SKILL,
[8]STICK_LVL
[9]DMGMIN,
[10]DMGMAX,
[11]SPEED, ÍŔ 11
[12]DEF, ÍŔ 12
[13]DEF_RATE, ÍŔ 13
[14]DURABILITY, ÍŔ 14
[15]REQ_LVL, ÍŔ 15
[16]REQ_STR, ÍŔ 16
[17]REQ_AGI, ÍŔ 17
[18]REQ_ENE, ÍŔ 18
[19]REQ_VIT, ÍŔ 19
[20]REQ_COM, ÍŔ 20
[21]DW, ÍŔ 21
[22]DK, ÍŔ 22
[23]ELF, ÍŔ 23
[24]MG, ÍŔ 24
[25]DL, ÍŔ 25
[26]SUM, ÍŔ 26
[27]RF, ÍŔ 27
[28]ANC1, ÍŔ 28
[29]ANC2
 
Last edited:
Upvote 0
No need $ for 1 min help :)

Thanks verified code more carefully and here we go.

After you add item at core/db/shop.db

Make sure item exist at core/db/items.db (if not then add) ofc WITH CORRECT SIZE !important!

Example

shop.db
217|0|42|0|99999|4FUNer Approve|
items.db
42|0|42|2|4|4FUNer Approve|0|1|0|104|130|35|0|0|93|0|135|62|9|0|0|0|0|0|1|0|0|0|-|-|

i7twfUk - How to add items in Exengine shop ! i will pay for guid ! - RaGEZONE Forums



also items2.db (not sure if for webshop or item info, test :))

[0]UID,
[1]TYPE,
[2]ID,
[3]X,
[4]Y,
[5]NAME,
[6]EXE_TYPE,
[7]SKILL,
[8]STICK_LVL
[9]DMGMIN,
[10]DMGMAX,
[11]SPEED, ÍŔ 11
[12]DEF, ÍŔ 12
[13]DEF_RATE, ÍŔ 13
[14]DURABILITY, ÍŔ 14
[15]REQ_LVL, ÍŔ 15
[16]REQ_STR, ÍŔ 16
[17]REQ_AGI, ÍŔ 17
[18]REQ_ENE, ÍŔ 18
[19]REQ_VIT, ÍŔ 19
[20]REQ_COM, ÍŔ 20
[21]DW, ÍŔ 21
[22]DK, ÍŔ 22
[23]ELF, ÍŔ 23
[24]MG, ÍŔ 24
[25]DL, ÍŔ 25
[26]SUM, ÍŔ 26
[27]RF, ÍŔ 27
[28]ANC1, ÍŔ 28
[29]ANC2



Im trying add this item its shows on webshops corecly but when i buy it its not showing on game wault


266 7 0 4 3 1 1 0 "Wings of Conqueror" 150 200 220 280 0 0 0 0 0 2 2 2 1 1 2 1


how to fix that ?


code from shop.db
214|12|266|0|835|Wings of Conqueror|

code from item.db
556|12|266|4|3|Wings of Conqueror|4|0|0|0|0|0|200|0|220|280|0|0|0|0|0|0|2|2|2|1|1|2|1|-|

code from items2.db

963|12|266|4|3|Wings of Conqueror|4|0|1|1|1|0|0|0|0|200|0|220|280|0|0|0|0|0|0|2|2|2|1|1|2|1|-|

mybe codes are incorect ?
 
Last edited:
Upvote 0
Items with id greater than 255 is not supported by your engine, need recode few places (checking 4 size & id 255+ support)

Also if you won't add all important items of your files to db

when player item at warehouse doesn't exist in db, it may be replaced
when sys will be checking for free slot at dis place cuz can't find size simple.
 
Last edited:
Upvote 0
Items with id greater than 255 is not supported by your engine, need recode few places (checking 4 size & id 255+ support)

Also if you won't add all important items of your files to db

when player item at warehouse doesn't exist in db, it may be replaced
when sys will be checking for free slot at dis place cuz can't find size simple.


how i can do that ? i only need add fy items and thats all !
 
Upvote 0
Status
Not open for further replies.
Back