how to duplicate some item include effect

IndieRO

New member
Messages
287
Points
0
Age
34
Location
Indonesia
Discord
RagnaIDN#7960
Emulator
Last edited by a moderator:
Do you mean you are trying to make an item with that same effect, but it's on a different ID/possibly name? What is the item info in item_db.conf?

 
Do you mean you are trying to make an item with that same effect, but it's on a different ID/possibly name? What is the item info in item_db.conf?
Yes, I mean that but the new item I made didnt show the same effect display and function when used, even I copy the script of speed potion. As we know that the original speed potion gives the character walk speed and it show wings animation. Can you help me to solve this problem? Thanks in advance

this original script
{
    Id: 12016
    AegisName: "Speed_Up_Potion"
    Name: "Speed Potion"
    Type: 2
    Buy: 2
    Weight: 100
    BuyingStore: true
    Script: <" sc_start SC_MOVHASTE_INFINITY,5000,0; ">
},
 
and this my duplicate item 
 
{
    Id: 8893
    AegisName: "Speed_Up_Potion"
    Name: "Valk Speed Potion"
    Type: 2
    Buy: 2
    Weight: 100
    BuyingStore: true
    Script: <" sc_start SC_MOVHASTE_INFINITY,5000,0; ">
},
 
 
 
effect speed up working but effect display when used item didn't show up??? how to gift effect display when used it?

 
Back
Top