How to create new Cube?

05/24/2018 20:57 Reno31#1
Hello Community, i need help about Cube, how can i make new cube to another npc?
05/30/2018 05:14 Ex0dia#2
Hi

you have to edit the file 'locale/en/cube.txt'.

Code:
#적화석재조
section
npc [B]20383[/B]
item    51001   50
item    27992   1
item    27993   1
item    27994   1
reward  18900   1
gold    50000
percent 10
end
You can change the npc to your new vnum and add your items.

Then you have to add a new quest for opening the cube window:
Code:
quest testcube begin
    state start begin
        when [B]20383[/B]."Cube" begin
            say_title("Open cube")
            say("Hi")
            wait()
            setskin(NOWINDOW)
            command("cube open")
        end
    end
end
Check the quest 'cube.quest'

Kind regards
Ex0dia
05/31/2018 18:02 Reno31#3
Thanks, but how do i make group? ex in your example is "#적화석재조"