|
You last visited: Today at 21:45
Advertisement
Mount Bug
Discussion on Mount Bug within the Metin2 Private Server forum part of the Metin2 category.
06/15/2017, 20:52
|
#1
|
elite*gold: 10
Join Date: Apr 2014
Posts: 490
Received Thanks: 75
|
Mount Bug
Servus ihr Süßen
bei mir ist das Problem, dass wenn ich auf dem Mount sitze und mich teleportiere, das Mount weg ist aber das Siegel noch im Slot.
Wie kann ich das fixxen. Hatte glaube mal nen fix für aber das is paar Jahre her.
Danke euch!
MfG
Crushiero
|
|
|
06/16/2017, 11:55
|
#2
|
elite*gold: 0
Join Date: Sep 2012
Posts: 428
Received Thanks: 242
|
Poste Bitte mal deine Quest.
|
|
|
06/16/2017, 17:07
|
#3
|
elite*gold: 10
Join Date: Apr 2014
Posts: 490
Received Thanks: 75
|
PHP Code:
quest ride begin
state start begin
function Ride( vnum, remain_time )
ride_info = {
[71114] = { 20110, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 75, 75, true },
[71115] = { 20110, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 100, 75, false },
[71116] = { 20111, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 100, 80, true },
[71117] = { 20111, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 150, 80, false },
[71118] = { 20112, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 125, 85, true },
[71119] = { 20112, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 200, 85, false },
[71120] = { 20113, item.get_socket(2)*60, apply.ATT_GRADE_BONUS, 200, 85, true },
[71121] = { 20113, item.get_socket(2)*60, apply.ATT_GRADE_BONUS, 300, 85, false },
[71171] = { 20227, item.get_socket(2)*60, apply.MOV_SPEED, 60, 1, false, false, false},
[71172] = { 20226, item.get_socket(2)*60, apply.MOV_SPEED, 60, 1, false, false, false},
}
if pc.level < ride_info[vnum][5] then
say("")
say(gameforge.ride._010_say)
say("")
else
if 112 == pc.get_map_index() then
return
end
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 vnum <= 71113 or vnum >71121 then
return
end
if 0 != vnum then
ride.Ride(vnum, remain_time)
end
end
when 71114.use or 71115.use or 71116.use or 71117.use or 71118.use or 71119.use or 71120.use or 71121.use
or 71171.use or 71172.use begin
if pc.is_polymorphed() then
say("")
say(gameforge.ride._020_say)
say("")
elseif false == pc.is_riding() then
if true == horse.is_summon() then
horse.unsummon()
end
ride.Ride(item.vnum, 0)
else
say("")
say(gameforge.ride._030_say)
say("")
end
end
end
end
Das ist die offizielle Quest von Kori.
|
|
|
06/18/2017, 11:12
|
#4
|
elite*gold: 0
Join Date: Dec 2014
Posts: 1,018
Received Thanks: 499
|
Quote:
Originally Posted by Crushiero
PHP Code:
quest ride begin
state start begin
function Ride( vnum, remain_time )
ride_info = {
[71114] = { 20110, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 75, 75, true },
[71115] = { 20110, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 100, 75, false },
[71116] = { 20111, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 100, 80, true },
[71117] = { 20111, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 150, 80, false },
[71118] = { 20112, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 125, 85, true },
[71119] = { 20112, item.get_socket(2)*60, apply.DEF_GRADE_BONUS, 200, 85, false },
[71120] = { 20113, item.get_socket(2)*60, apply.ATT_GRADE_BONUS, 200, 85, true },
[71121] = { 20113, item.get_socket(2)*60, apply.ATT_GRADE_BONUS, 300, 85, false },
[71171] = { 20227, item.get_socket(2)*60, apply.MOV_SPEED, 60, 1, false, false, false},
[71172] = { 20226, item.get_socket(2)*60, apply.MOV_SPEED, 60, 1, false, false, false},
}
if pc.level < ride_info[vnum][5] then
say("")
say(gameforge.ride._010_say)
say("")
else
if 112 == pc.get_map_index() then
return
end
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 vnum <= 71113 or vnum >71121 then
return
end
if 0 != vnum then
ride.Ride(vnum, remain_time)
end
end
when 71114.use or 71115.use or 71116.use or 71117.use or 71118.use or 71119.use or 71120.use or 71121.use
or 71171.use or 71172.use begin
if pc.is_polymorphed() then
say("")
say(gameforge.ride._020_say)
say("")
elseif false == pc.is_riding() then
if true == horse.is_summon() then
horse.unsummon()
end
ride.Ride(item.vnum, 0)
else
say("")
say(gameforge.ride._030_say)
say("")
end
end
end
end
Das ist die offizielle Quest von Kori.
|
Die ist nicht von Kori aber okey, du musst das per Source lösen <-
|
|
|
06/20/2017, 21:40
|
#5
|
elite*gold: 0
Join Date: Jun 2016
Posts: 3
Received Thanks: 0
|
If you don't want to drop you down from the mount, create a special item group for them in special_item_group.txt
But this won't solve the siel stucking in the slot.
I hope i could help.
|
|
|
Similar Threads
|
[SEARCH]Gold bug , castel bug ans speed repair bug for key bug or crystal bug
04/23/2020 - Browsergames - 3 Replies
Hi
I search key or crystal bug :)
I will give gold , castel and speed repair bug
Please send me skype : ciechomek111
|
Mount in AQ without having bug mount
03/27/2006 - WoW Exploits, Hacks, Tools & Macros - 2 Replies
http://www.elitepvpers.com/forum/index.php?...f=57& amp;t=17183&s=
If you use the trick posted in this topic you can use your regular mount in AQ40 to get around.
Before the steps leading up to where the first boss (Skeram) would be (assuming you killed him already), if you dismount, then jump from the dirt onto the steps and mount right away, you will stay mounted and can travel all throughout the bug tunnels with your regular mount. It's really useful for getting around the instance when you...
|
All times are GMT +1. The time now is 21:45.
|
|