|
You last visited: Today at 00:36
Advertisement
[Hello] I Get Error Grab pet or Attack pet when Spawn
Discussion on [Hello] I Get Error Grab pet or Attack pet when Spawn within the SRO Private Server forum part of the Silkroad Online category.
06/17/2016, 17:00
|
#1
|
elite*gold: 0
Join Date: May 2016
Posts: 123
Received Thanks: 26
|
[Hello] I Get Error Grab pet or Attack pet when Spawn
I open any pet grab or attack or follow and i get disconect every time how i can solved this ? Thanks
|
|
|
06/17/2016, 19:21
|
#2
|
elite*gold: 0
Join Date: Feb 2016
Posts: 652
Received Thanks: 342
|
Quote:
Originally Posted by EQuiNoXsro
I open any pet grab or attack or follow and i get disconect every time how i can solved this ? Thanks
|
Check " SRO_VT_SHARD_.dbo._AddNewCOS
replace it with another one, and check if fixed.
|
|
|
06/17/2016, 19:30
|
#3
|
elite*gold: 0
Join Date: May 2016
Posts: 123
Received Thanks: 26
|
i try it with good addnewcos who work 100% and no work at me... any new things how to solved it ? plz?
here is my addnewcos
PHP Code:
USE [SRO_VT_SHARD]
GO
/****** Object: StoredProcedure [dbo].[_AddNewCOS] Script Date: 6/17/2016 7:27:48 PM ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[_AddNewCOS]
@OwnerCharID int,
[MENTION=975074]Refo[/MENTION]bjID int,
@Level int,
@HP int,
@MP int,
@HGP int,
@KeeperNPC int,
[MENTION=1174895]state[/MENTION] int,
@InventorySize int,
@itemID int,
[MENTION=830797]Picki[/MENTION]temConfig tinyint,
[MENTION=5344908]renten[/MENTION]dTime smalldatetime
as
begin tran
declare @COS_ID int
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
-- pet_skill_item (ÃÖ¼±È£)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
declare @MaxInventorySize tinyint
select @MaxInventorySize = InventorySize
from _RefObjCommon, _RefObjChar
where _RefObjCommon.ID = [MENTION=975074]Refo[/MENTION]bjID and _RefObjCommon.Link = _RefObjChar.ID
if( @@rowcount = 0 or @MaxInventorySize < @InventorySize )
begin
rollback tran
return -5
end
insert into _CharCOS values (@OwnerCharID, [MENTION=975074]Refo[/MENTION]bjID, @HP, @MP, @KeeperNPC, [MENTION=1174895]state[/MENTION], NULL, @Level, 0, @HGP, [MENTION=830797]Picki[/MENTION]temConfig, [MENTION=5344908]renten[/MENTION]dTime)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
set @COS_ID = @@identity
if (@COS_ID = 0 OR @@error <> 0)
begin
rollback tran
return -1
end
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
-- pet_skill_item (ÃÖ¼±È£)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
if (@MaxInventorySize > 0)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
begin
declare [MENTION=303108]slot[/MENTION] int
set [MENTION=303108]slot[/MENTION] = 0
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
-- pet_skill_item (ÃÖ¼±È£)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
while [MENTION=303108]slot[/MENTION] < @MaxInventorySize)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
begin
insert into _InvCOS values(@COS_ID, [MENTION=303108]slot[/MENTION], 0)
if (@@error <> 0)
begin
-- Àκ¥Å丮 »ý¼º ½ÇÆÐ!
rollback tran
return -2
end
set [MENTION=303108]slot[/MENTION] = [MENTION=303108]slot[/MENTION] + 1
end
end
/* --´õ ÀÌ»ó ÀÌ Ä÷³¿¡´Â µ¥ÀÌÅ͸¦ ³ÖÁö ¾Ê´Â´Ù!
UPDATE _Char SET EngagedCOS = @COS_ID WHERE CharID = @OwnerCharID
IF (@@ERROR <> 0 OR @@ROWCOUNT = 0)
BEGIN
ROLLBACK TRANSACTION
RETURN -3
END
*/
if( @itemID <> 0 )
begin
update _Items set Data = @COS_ID where ID64 = @itemID
if( @@error <> 0 or @@rowcount = 0 )
begin
rollback transaction
return -4
end
end
commit tran
return @COS_ID
|
|
|
06/17/2016, 21:48
|
#4
|
elite*gold: 0
Join Date: Feb 2016
Posts: 652
Received Thanks: 342
|
Quote:
Originally Posted by EQuiNoXsro
i try it with good addnewcos who work 100% and no work at me... any new things how to solved it ? plz?
here is my addnewcos
PHP Code:
USE [SRO_VT_SHARD]
GO
/****** Object: StoredProcedure [dbo].[_AddNewCOS] Script Date: 6/17/2016 7:27:48 PM ******/
SET ANSI_NULLS OFF
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [dbo].[_AddNewCOS]
@OwnerCharID int,
[MENTION=975074]Refo[/MENTION]bjID int,
@Level int,
@HP int,
@MP int,
@HGP int,
@KeeperNPC int,
[MENTION=1174895]state[/MENTION] int,
@InventorySize int,
@itemID int,
[MENTION=830797]Picki[/MENTION]temConfig tinyint,
[MENTION=5344908]renten[/MENTION]dTime smalldatetime
as
begin tran
declare @COS_ID int
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
-- pet_skill_item (ÃÖ¼±È£)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
declare @MaxInventorySize tinyint
select @MaxInventorySize = InventorySize
from _RefObjCommon, _RefObjChar
where _RefObjCommon.ID = [MENTION=975074]Refo[/MENTION]bjID and _RefObjCommon.Link = _RefObjChar.ID
if( @@rowcount = 0 or @MaxInventorySize < @InventorySize )
begin
rollback tran
return -5
end
insert into _CharCOS values (@OwnerCharID, [MENTION=975074]Refo[/MENTION]bjID, @HP, @MP, @KeeperNPC, [MENTION=1174895]state[/MENTION], NULL, @Level, 0, @HGP, [MENTION=830797]Picki[/MENTION]temConfig, [MENTION=5344908]renten[/MENTION]dTime)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
set @COS_ID = @@identity
if (@COS_ID = 0 OR @@error <> 0)
begin
rollback tran
return -1
end
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
-- pet_skill_item (ÃÖ¼±È£)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
if (@MaxInventorySize > 0)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
begin
declare [MENTION=303108]slot[/MENTION] int
set [MENTION=303108]slot[/MENTION] = 0
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
-- pet_skill_item (ÃÖ¼±È£)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
while [MENTION=303108]slot[/MENTION] < @MaxInventorySize)
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
--@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
begin
insert into _InvCOS values(@COS_ID, [MENTION=303108]slot[/MENTION], 0)
if (@@error <> 0)
begin
-- Àκ¥Å丮 »ý¼º ½ÇÆÐ!
rollback tran
return -2
end
set [MENTION=303108]slot[/MENTION] = [MENTION=303108]slot[/MENTION] + 1
end
end
/* --´õ ÀÌ»ó ÀÌ Ä÷³¿¡´Â µ¥ÀÌÅ͸¦ ³ÖÁö ¾Ê´Â´Ù!
UPDATE _Char SET EngagedCOS = @COS_ID WHERE CharID = @OwnerCharID
IF (@@ERROR <> 0 OR @@ROWCOUNT = 0)
BEGIN
ROLLBACK TRANSACTION
RETURN -3
END
*/
if( @itemID <> 0 )
begin
update _Items set Data = @COS_ID where ID64 = @itemID
if( @@error <> 0 or @@rowcount = 0 )
begin
rollback transaction
return -4
end
end
commit tran
return @COS_ID
|
check grap pet slots, make grap pet max 1 page, and test
|
|
|
06/17/2016, 22:01
|
#5
|
elite*gold: 0
Join Date: May 2016
Posts: 123
Received Thanks: 26
|
the grab pet its 1 page.. i no have 5 pager or something like this.. and no work grab pet attack pet and follow pet.. no just grab pet.. some help ?
|
|
|
 |
Similar Threads
|
[Solved] Problem with Grab pet, attack pet disconnect bug
08/08/2022 - SRO PServer Questions & Answers - 9 Replies
Unluckily I've checked this thread How to Fix Attack / Pick Pet Bug
And the images expired, so anyone can help me with this trouble ?
|
DC on pet spawn/attack
10/21/2011 - SRO Private Server - 4 Replies
seem to be having a problem with spawning cos pets, getting AQ 5 errors and cant seem to figure out why, heres a screenie of my server control setup:
http://i195.photobucket.com/albums/z96/playmate-c hris/working.png
I tried different certs different medias ect, same result so i presume this is a DB problem. Any points in the right direction to solving this will be appreciated. I also tried in different areas, same resykt.
|
Auto Attack and Grab but not BOT!!!
12/29/2007 - SRO Hacks, Bots, Cheats & Exploits - 21 Replies
Click on mob,wipp spam 1234
1 is skill to use when mosnters hp is above 50%
2 Imbune,slow skill
3 quick finish skill for below 50%
4Kill skill below 25%
It will allso grab up to 3 item drops if within close range
To pause press Paues/Break
|
All times are GMT +1. The time now is 00:41.
|
|