-
Activity
-
-
0
DDoS Protections (GAME + WEBSITE)
Provides great services, the best in firewall programming, want to have your server fully protected this is the right guy! -
1
-
3
fix Level Update Fix [REVERSED]
We need new reaction smile specially for Mali topics, something like *CUMPERMANENTI think you are one of the best m2 designers, lets do it=) -
3
[Dumb question] what player_index pids (pid1, pid2, pid3, pid4, pid5) are actually for? 🥶
Thank you guys it is so obvious now! -
-
3
[Dumb question] what player_index pids (pid1, pid2, pid3, pid4, pid5) are actually for? 🥶
They are exactly it, the player ids of that account.- 1
-
-
3
[Dumb question] what player_index pids (pid1, pid2, pid3, pid4, pid5) are actually for? 🥶
At this point I'm afraid to ask, but here I go. PLAYER_INDEX DATABASE ID stands for the id of the account and this is clear to me EMPIRE stands for the kingdom of the account clearly with shinsoo = 1, jinno = 3 etc What about those pids? They are almost probably associated to each player character per account, but still I don't really get what the values refer to, all information I looked for seemed confusing and non exaustive; If someone could point me to something I'll be glad to get deeper into the undestanding of this Keep up the good work, cheers Macro -
0
Atlas/minimap not working.
Hi, im try recreate C1 / A1 and B1 map like ice(snow) / fire / desert maps, but when i recreate this map and i save atlas/minimap i got only old map. Just like this.
-
-
Recently Browsing
- No registered users viewing this page.
Question
Kenta 9
Hey guys,
I have a problem with my server and I have no idea how to solve this
https://metin2.download/picture/ie89ITu4U9DIJ034tir393ex7S4W4eRU/.gif
ITEM_PROTO.TXT:
71172 C?RÇRü°©zrLNC±Ç ITEM_COSTUME COSTUME_MOUNT 1 ANTI_SELL | ANTI_STACK QUEST_USE_MULTIPLE | LOG WEAR_SHIELD NONE 0 0 0 0 0 LIMIT_NONE 0 LIMIT_NONE 0 APPLY_NONE 0 APPLY_NONE 0 APPLY_NONE 0 28800 0 0 0 0 0 0 0 0
ITEM_PROTO XML:
<ItemDef Vnum="71171" Name="백유니콘소환패" LocalizedName="Sceau de Licorne" Type="18" SubType="0" Weight="0" Size="1" AntiFlags="106880" Flags="9216" WearFlags="128" ImmuneFlags="0" Gold="0" ShopBuyPrice="0" LimitType0="0" LimitValue0="0" LimitType1="0" LimitValue1="0" ApplyType0="0" ApplyValue0="0" ApplyType1="0" ApplyValue1="0" ApplyType2="0" ApplyValue2="0" Value0="180" Value1="0" Value2="0" Value3="0" Value4="0" Value5="0" Socket0="0" Socket1="0" Socket2="0" RefinedVnum="0" RefineSet="0" AlterToMagicItemPercent="0" Specular="0" GainSocketPercent="0" AddonType="0" />
QUEST:
quest ride begin
state start begin
function Ride( vnum, remain_time )
ride_info = {
--- Cheval noir & halloween ---
[71131] = { 20119, 60*60*24*365, apply.ATTBONUS_MONSTER, 20, 1, false, false, false},
[71161] = { 20219, 60*60*24*365, apply.ATTBONUS_MONSTER, 20, 1, false, false, false},
--- Licorne bleu & rouge ---
[71172]= { 20226, 60*60*24*365, apply.MAX_HP, 100, 0, false, true },
[71171]= { 20227, 60*60*24*365, apply.MAX_HP, 100, 0, false, true },
--- Léopard & Panthère ---
[71177] = { 20232, 60*60*24*365, apply.ATTBONUS_MONSTER, 20, 1, false, false, false},
[71176] = { 20231, 60*60*24*365, apply.ATTBONUS_MONSTER, 20, 1, false, false, false},
-- Panda blindé & Panda polaire --
[71166] = { 20222, 60*60*24*365, apply.ATTBONUS_MONSTER, 20, 1, false, false, false},
[71165] = { 20221, 60*60*24*365, apply.ATTBONUS_MONSTER, 20, 1, false, false, false},
-- Lion polaire & Lion --
[71128] = { 20118, 60*60*24*365, apply.ATTBONUS_MONSTER, 20, 1, false, false, false},
[71124] = { 20114, 60*60*24*365, apply.ATTBONUS_MONSTER, 20, 1, false, false, false},
}
if pc.level < ride_info[vnum][5] then
syschat("Votre level est trop bas pour pouvoir utiliser cette monture.")
else
if ride_info[vnum][2] == 0 and remain_time != 0 then
pc.mount( ride_info[vnum][1], remain_time*60 )
pc.mount_bonus( ride_info[vnum][3], ride_info[vnum][4], remain_time*60 )
else
pc.mount( ride_info[vnum][1], ride_info[vnum][2] )
pc.mount_bonus( ride_info[vnum][3], ride_info[vnum][4], ride_info[vnum][2] )
end
if true == ride_info[vnum][6] then
pc.remove_item(vnum, 1)
end
end
end
when login begin
local vnum, remain_time = pc.get_special_ride_vnum()
if 0 != vnum then
ride.Ride(vnum, remain_time)
end
end
when 71172.use or 71171.use or 71131.use or 71161.use or 71177.use or 71176.use or 71166.use or 71165.use or 71128.use or 71124.use begin
if pc.is_polymorphed() then
syschat("You can´t ride if you´re polymorphed!")
elseif false == pc.is_riding() then
if true == horse.is_summon() then
horse.unsummon()
end
ride.Ride(item.vnum, 0)
else
pc.unmount()
end
end
when 52001.use or 52002.use or 52003.use or 52004.use or 52005.use or 52006.use or 52007.use or 52008.use or 52009.use or 52010.use or 52011.use or 52012.use or 52013.use or 52014.use or 52015.use or
52016.use or 52017.use or 52018.use or 52019.use or 52020.use or 52021.use or 52022.use or 52023.use or 52024.use or 52025.use or 52026.use or 52027.use or 52028.use or 52029.use or 52030.use or
52031.use or 52032.use or 52033.use or 52034.use or 52035.use or 52036.use or 52037.use or 52038.use or 52039.use or 52040.use or 52041.use or 52042.use or 52043.use or 52044.use or 52045.use or
52046.use or 52047.use or 52048.use or 52049.use or 52050.use or 52051.use or 52052.use or 52053.use or 52054.use or 52055.use or 52056.use or 52057.use or 52058.use or 52059.use or 52060.use or
52061.use or 52062.use or 52063.use or 52064.use or 52065.use or 52066.use or 52067.use or 52068.use or 52069.use or 52070.use or 52071.use or 52072.use or 52073.use or 52074.use or 52075.use or
52076.use or 52077.use or 52078.use or 52079.use or 52080.use or 52081.use or 52082.use or 52083.use or 52084.use or 52085.use or 52086.use or 52087.use or 52088.use or 52089.use or 52090.use or 71164.use or
52091.use or 52092.use or 52093.use or 52094.use or 52095.use or 52096.use or 52097.use or 52098.use or 52099.use or 52100.use or 52101.use or 52102.use or 52103.use or 52104.use or 52105.use begin
if pc.is_polymorphed() then
syschat("Vous ne pouvez pas utiliser une monture lorsque vous êtes transformez !")
elseif false == pc.is_riding() then
if true == horse.is_summon() then
horse.unsummon()
end
ride.Ride(item.vnum, 0)
else
pc.unmount()
end
end
end
end
( i take screen by BackPlayer )
Thank you for help and good night
Core X - External 2 Internal
Link to comment
Share on other sites
Top Posters For This Question
2
1
1
1
Popular Days
Apr 19
3
Apr 25
1
May 30
1
Top Posters For This Question
Kenta 2 posts
bluedrago 1 post
DisLoyal 1 post
Mind Rapist 1 post
Popular Days
Apr 19 2016
3 posts
Apr 25 2016
1 post
May 30 2016
1 post
Popular Posts
DisLoyal
I have the same problem. I give my quest... this quest the costume moutn fully functional me. This is the hidden content, please 77fa9c
Kenta
Thank you so munch Dis, 100% work
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