quest geld begin state start begin when 30013.use begin say_title("Der Alkoholkrug:") say("") say("Du möchtest also 250.000.000 Yang?") say("") local aw = select("Ja", "Vieleicht später") if aw == 2 then return else say_title("Der Alkoholkrug:") say("") say("Viel Spaß mit dem Geld!") say("") pc.remove_item(30013) pc.give_gold(250000000) end end end end
Das musst du dann in der special_item_group.txt machen, also musst nicht geht aber auch
SO ähnlich machs, aber selbst wegen den Tab's, aber so ähnlich sieht das dann aus..
Quest alkoholkrug begin
State Start begin
When 30013.use begin
Say("blabla möchtest du 250kk") # Text beliebig erweiterbar blabla nur als bsp
Local s = select ("Ja", "nein")
If s == 2
return
Elseif s == 1 and PC.get_Gold >= 1750000000 # damit kein Yang Bug entsteht
return
Else
PC.chengemoney(250000000)
PC.remove_item("30013", 1)
end
end
end
end
Compile all quest without quest's files list // Kompilieren Sie alle Quest ohne Quest 07/17/2011 - Metin2 PServer Guides & Strategies - 3 Replies ENGLISH
Hello dear community, this is a very simple guide but at the same time useful.
How to compile ALL quest in the folder "quest" without the files list in the file "locale_list"?
Easy!
Open the file "make" and replace the content of the file with this:
for f in *.quest; do ./qc $f; done
Oki. Now set the 0777 permission to the file.
Finally open a SSH client and sign in. Write the command:
cd /game_file_folder