2h&Shield BUG I would like to know how to use 2h and shield at the same time since i

10/14/2017 00:15 mo0a17#1
2h&Shield BUG

I would like to know how to use 2h and shield at the same time since i just made it and i dont know how.

Like This
[Only registered and activated users can see links. Click Here To Register...]
[Only registered and activated users can see links. Click Here To Register...]
10/14/2017 15:02 blapanda#2
That's not a bug.

You can either do one of two options:
Replacing all 1 handed sword *.bsr files with one's from the 2 handed category,
or
You are going to switch the TID group of every 2 handed weapon for the 1 handed ones, re-define every 2 handed skill (required weapon, used weapon, etc.) as a 1 handed (you will then have 4 skill rows of 1 handed skills at the warrior skilltree) and can reproduce that amateur show-off.
10/14/2017 19:50 leo2111#3
Quote:
Originally Posted by blapanda View Post
That's not a bug.

You can either do one of two options:
Replacing all 1 handed sword *.bsr files with one's from the 2 handed category,
or
You are going to switch the TID group of every 2 handed weapon for the 1 handed ones, re-define every 2 handed skill (required weapon, used weapon, etc.) as a 1 handed (you will then have 4 skill rows of 1 handed skills at the warrior skilltree) and can reproduce that amateur show-off.
Thats right but there is also a bug, some unskilled devs who are creating model switch scrolls or skin remover based on _ADD_ITEM_EXTERN as main procedure
10/14/2017 21:15 blapanda#4
Quote:
Originally Posted by leo2111 View Post
Thats right but there is also a bug, some unskilled devs who are creating model switch scrolls or skin remover based on _ADD_ITEM_EXTERN as main procedure
Never messed around with SP skin/model changer crap. :D
10/14/2017 22:21 Xutan*#5
yo
this can happen when you put the 2h & shield in the underbar and spam switching them faster than usual. you'll dc at the end and once you relogin, you'll find both 2h&shield equiped.
Basic solution: add a check on the login event in _AddLogChar if the character is wearing two handed weapon and a shield, put one of them in a free inventory slot.
10/14/2017 22:25 leo2111#6
Quote:
Originally Posted by Xutan* View Post
yo
this can happen when you put the 2h & shield in the underbar and spam switching them faster than usual. you'll dc at the end and once you relogin, you'll find both 2h&shield equiped.
Basic solution: add a check on the login event in _AddLogChar if the character is wearing two handed weapon and a shield, put one of them in a free inventory slot.
never :D
10/15/2017 03:15 MinaThabit#7
Add Procedure For _AddLogChar
Quote:
IF @EventID in (4,6)
Begin
Declare @WeaponID Int , @ShieldID Int , @RefWeaponID Int , @Slot Int
Set @WeaponID = (Select ItemID From [SRO_VT_SHARD].[dbo].[_Inventory] Where CharID = @CharID and Slot = 6)
Set @ShieldID = (Select ItemID From [SRO_VT_SHARD].[dbo].[_Inventory] Where CharID = @CharID and Slot = 7)
IF @ShieldID > 0 and @WeaponID > 0
Begin
Set @RefWeaponID = (Select RefItemID From [SRO_VT_SHARD].[dbo].[_Items] Where ID64 = @WeaponID)
IF @RefWeaponID Is Not Null and @RefWeaponID in
(Select ID From [SRO_VT_SHARD].[dbo].[_RefObjCommon] Where CodeName128 Like 'ITEM_CH_SPEAR_%'
Or CodeName128 Like 'ITEM_CH_TBLADE_%' Or CodeName128 Like 'ITEM_CH_BOW_%'
Or CodeName128 Like 'ITEM_EU_TSWORD_%' Or CodeName128 Like 'ITEM_EU_AXE_%'
Or CodeName128 Like 'ITEM_EU_DAGGER_%' Or CodeName128 Like 'ITEM_EU_CROSSBOW_%'
Or CodeName128 Like 'ITEM_EU_TSTAFF_%' Or CodeName128 Like 'ITEM_EU_HARP_%')
Begin
Set @Slot = (Select Top 1 Slot From [SRO_VT_SHARD].[dbo].[_Inventory] Where ItemID = 0 and CharID = @CharID and Slot > 12 Order by Slot)
IF @Slot Is Not Null
Begin
Update [SRO_VT_SHARD].[dbo].[_Inventory] Set ItemID = 0 Where Slot = 7 and CharID = @CharID
Update [SRO_VT_SHARD].[dbo].[_Inventory] Set ItemID = @ShieldID Where Slot = @Slot and CharID = @CharID
End
End
End
10/15/2017 07:26 slaintrax200#8
Bug founder ? Lol how did you found this bug you litle scum? Just posting my character