[RELEASE] Lua Rappelz

08/17/2019 00:20 Nove240#1
Nulled.
08/17/2019 00:34 12sky2Server#2
delete item,maybe has problem..something dont be deleted...you must make a judgement..

thank you released
08/17/2019 00:51 Nove240#3
Quote:
Originally Posted by 12sky2Server View Post
delete item,maybe has problem..something dont be deleted...you must make a judgement..

thank you released
Delete can make problems ? I will try to fix that , If u know the soluce you can share it here
12/30/2020 03:17 bodzioelite#4
insert_summon by summon id dosnt work how ever i input it it always goes ERROR

/run

addpet(3601)
adppet3601
addpet("3601")
addpet"3601"
addpet=3601

nothink works for it
12/30/2020 04:45 ThunderNikk#5
Try this one...

Code:
function insert_staged_pet(summon_code,enhance,card_id)


    if enhance > 0 and enhance < 6 then
        insert_summon_by_summon_id(summon_code)
        local petcard_array = get_item_handle_list(card_id)
        local new_pet = table.getn(petcard_array)
        set_item_enhance(petcard_array[new_pet],enhance)
    else 
       message("Error. Use an enhance-value between 1 and 5!")
    end

end
You added the code to ETC_Script_Functions.lua right?

Also what server file version are you working with?

Could you post the error you get?