- 0
-
Activity
-
-
19
-
0
Looking for someone who can do me that
this is what i want, tell me how much via PM. tried bunch of methods but nothings worked so far. -
1
-
22
Paid Service - Metin2 Systems
The stripped version of the Premium Offline Shop is now available. More information on website. -
40
-
1
TXT File To Lower Case [Phaselis Map Works]
for py users import os # function to rename files def rename_files(path): for dirpath, dirnames, filenames in os.walk(path): for filename in filenames: # check if filename contains uppercase characters if any(c.isupper() for c in filename): # rename file to lowercase os.rename(os.path.join(dirpath, filename), os.path.join(dirpath, filename.lower())) # enter the path of the directory to rename files path = input("Enter directory path: ") rename_files(path) print("All files have been renamed to lowercase.") -
1
-
0
Looking for a Tehnician
Hello! i have my server files but i need a technician to continue the work i started with another man. I have all the necessary systems, I just need to add the drop, check the systems and possible bugs, changes in Game play and so on. I would like to know if it is possible to have a long-term collaboration and if you can help me. The last technician was not serious and left me with the unfinished server. Thank you! discord: Alexannder#9089
-
-
Recently Browsing
- No registered users viewing this page.
Question
DeYaN. 13
As the title says, here is someone who improve the clasic quest for stackable books ?
If we have the stackable books the player can trade with the soon more piece of books but he receive back a single special books.
here is the basic quest ..
quest eveniment_carti begin
state start begin
when login begin
if game.get_event_flag("eveniment_carti") == 1 then
chat("[EVENIMENT]: Ziua Cartilor - Dute la Soon si vezi despre ce e vorba! ")
end
end
when 20023.chat."Administrare eveniment" with pc.is_gm() begin
if game.get_event_flag("eveniment_carti") == 1 then
say_title("Soon:")
say(" ")
say("Doresti sa inchizi acest eveniment? ")
say(" ")
local confirma = select ("Da", "Nu acum")
if 1 == confirma then
notice_all("[EVENIMENT]: Ziua Cartilor - TERMINAT.")
game.set_event_flag("eveniment_carti", 0)
return
end
end
if game.get_event_flag("eveniment_carti") == 0 then
say_title("Soon:")
say(" ")
say("Doresti sa deschizi acest eveniment? ")
say(" ")
local confirma = select ("Da", "Nu acum")
if 1 == confirma then
notice_all("[EVENIMENT]: Ziua Cartilor - ACTIVAT.")
game.set_event_flag("eveniment_carti", 1)
return
end
end
end
when 20023.chat."Ziua Cartilor" with game.get_event_flag("eveniment_carti") == 1 begin
say_title("Soon:")
say("")
say("E o zi frumoasa!")
say(" ")
say("Dami o carte a competentei si o sa primesti in")
say("schimbul ei cartea mea favorita ... ")
say("")
say_reward("Trage cartea ce vrei sa o schimbi")
say_reward("pe Soon - viermele de carte.")
return
end
when 20023.take with item.vnum == 50300 and game.get_event_flag("eveniment_carti") == 1 begin
local num = number(1,44)
local tomes = {50401,50402,50403,50404,50405,50416,50417,50418,50419,50420,50431,50432,50433,50434,50435,50446,50447,50448,50449,50450,50461,50462,50463,50464,50465,50466,50476,50477,50478,50479,50480,50481,50496,50495,50494,50493,50492,50491,50506,50507,50508,50509,50510,50511}
item.remove(50300,1)
pc.give_item2(tonumber(tomes[num]),1)
end
end
end
if i replace the item.remove(50300,1) with pc.remove_item(50300,1) the quest remove the first book from inventory not the selected book ...
Edited by DeYaN.Link to comment
Share on other sites
Top Posters For This Question
3
1
1
Popular Days
Mar 1
1
Oct 12
1
Oct 14
1
Oct 19
1
Top Posters For This Question
DeYaN. 3 posts
OkamiRo 1 post
Catalin2o14 1 post
Popular Days
Mar 1 2023
1 post
Oct 12 2020
1 post
Oct 14 2020
1 post
Oct 19 2020
1 post
Popular Posts
DeYaN.
As the title says, here is someone who improve the clasic quest for stackable books ? If we have the stackable books the player can trade with the soon more piece of books but he receive back a s
4 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now