Register for your free account! | Forgot your password?

You last visited: Today at 10:17

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Release] Model Switcher

Discussion on [Release] Model Switcher within the SRO PServer Guides & Releases forum part of the SRO Private Server category.

Reply
 
Old   #1
 
Eslam Galull's Avatar
 
elite*gold: 85
Join Date: Aug 2010
Posts: 1,278
Received Thanks: 521
[Release] Model Switcher

my Crapyy Code was working on Galullians & yea it will work with you to



- AddLogItem

Code:
  if (@ItemRefID = 43054)
  BEGIN
  EXEC SRO_VT_SHARDLOG.dbo._NOVA_SWITCHER  @CharID
  END
- Query

Code:
USE [SRO_VT_SHARDLOG]
GO

/****** Object:  StoredProcedure [dbo].[_NOVA_SWITCHER]    Script Date: 6/6/2015 2:42:04 PM ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

/****** Object:  StoredProcedure [dbo].[_NOVA_SWITCHER]    Script Date: 6/6/2015 8:10:36 AM ******/

CREATE PROCEDURE [dbo].[_NOVA_SWITCHER] 
-- ============================================= 
/*
Eslam Galull
*/
-- ============================================= 
  @CharID INT 


AS 
BEGIN 
--//---------------------------------------------------------------   
    

	DECLARE @INVSIZE TINYINT,
				@Top1Wep int,
				@OldItm int 
	
		Set @InvSize = (select InventorySize from sro_vt_shard.._char where charid = @charid)
		set @Top1Wep = (select top 1 inv.itemid from sro_vt_shard.._inventory inv inner join sro_vt_shard.._items itm on inv.itemid = itm.id64
			where itm.refitemid in (select ItemID from _ModelSwitcher) and itm.serial64 > 0 and inv.itemid <> 0 and inv.slot between 13 and @InvSize and inv.charid = @charid )
		Set @OldItm = (select top 1 refitemid from sro_vt_shard.._items where id64 <> 0 and id64 = @Top1Wep and serial64 > 0)
	if @Top1Wep > 0
	Begin
		Declare @NewItm int = case
			When @olditm in (select ItemID from _ModelSwitcher)
				then (select top 1 Newitemid from _ModelSwitcher where ItemID = @olditm )
		 end /* will destroy any item that he tries to switch if he dont have required items */
		update sro_vt_shard.._items set RefItemID = @NewItm   where RefItemID = @OldItm and ID64 = @Top1Wep and Serial64 > 0
	End

	END


GO

- table ( so here u should put the olditem id .. and the new one id ) thats all

like that



Code:
USE [SRO_VT_SHARDLOG]
GO

/****** Object:  Table [dbo].[_ModelSwitcher]    Script Date: 6/6/2015 2:43:23 PM ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

SET ANSI_PADDING ON
GO

CREATE TABLE [dbo].[_ModelSwitcher](
	[ItemID] [int] NOT NULL,
	[ItemCode] [varchar](max) NOT NULL,
	[NewitemID] [int] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]

GO

SET ANSI_PADDING OFF
GO
Eslam Galull is offline  
Thanks
7 Users
Old 06/06/2015, 14:49   #2
 
Hamza FiGo's Avatar
 
elite*gold: 150
Join Date: Sep 2009
Posts: 979
Received Thanks: 252
Thanks alot soul.
Hamza FiGo is offline  
Thanks
1 User
Old 06/06/2015, 16:55   #3
 
imTormentor's Avatar
 
elite*gold: 0
Join Date: Mar 2013
Posts: 22
Received Thanks: 2
keep up
imTormentor is offline  
Old 06/12/2015, 13:40   #4
 
elite*gold: 0
Join Date: Apr 2014
Posts: 28
Received Thanks: 3
is this a message system ? @its.soul
salah15 is offline  
Old 06/12/2015, 15:14   #5
 
Eslam Galull's Avatar
 
elite*gold: 85
Join Date: Aug 2010
Posts: 1,278
Received Thanks: 521
No Dude its a

Quote:
[Release] Model Switcher
Eslam Galull is offline  
Old 06/13/2015, 14:26   #6
 
Syloxx's Avatar
 
elite*gold: 56
Join Date: Oct 2013
Posts: 1,165
Received Thanks: 762
its a upgrade system and not a model switcher

model switcher works like this:
-you are able to switch a Item (Glavie in this case) in different degrees not only "upgrade" to a static item.
-there should be 1 Scroll for every degree only (Model Switcher D1, Model Switcher D2 etc) NOT (Model Switcher D1 (Glavie), Model Switcher D1 (Bow) etc)

this isnt possible with your system and btw a better version of this upgrade system is already released by me

Syloxx is offline  
Thanks
3 Users
Old 06/13/2015, 14:42   #7
 
Eslam Galull's Avatar
 
elite*gold: 85
Join Date: Aug 2010
Posts: 1,278
Received Thanks: 521
Quote:
Originally Posted by Syloxx View Post
its a upgrade system and not a model switcher

model switcher works like this:
-you are able to switch a Item (Glavie in this case) in different degrees not only "upgrade" to a static item.
-there should be 1 Scroll for every degree only (Model Switcher D1, Model Switcher D2 etc) NOT (Model Switcher D1 (Glavie), Model Switcher D1 (Bow) etc)

this isnt possible with your system and btw a better version of this upgrade system is already released by me


1. it doesn't matter the owner will just put the new model ID in table !
2. it already a 1 Scroll
Quote:
if (@ItemRefID = 43054)
BEGIN
EXEC SRO_VT_SHARDLOG.dbo._NOVA_SWITCHER @CharID
END
at the end the query nt the perfect nd i told ppl that in the main thread ..
Quote:
my Crapyy Code was working on Galullians & yea it will work with you to

so if you wanna help ( not just flame ) share your perfect one !
Eslam Galull is offline  
Old 06/13/2015, 15:02   #8
 
Syloxx's Avatar
 
elite*gold: 56
Join Date: Oct 2013
Posts: 1,165
Received Thanks: 762
Quote:
Originally Posted by its.soul View Post
so if you wanna help ( not just flame ) share your perfect one !
thats what i just did in the post approve?
Syloxx is offline  
Old 06/13/2015, 15:16   #9
 
Eslam Galull's Avatar
 
elite*gold: 85
Join Date: Aug 2010
Posts: 1,278
Received Thanks: 521
after the skype conference ..

yea you are right its a ****
Eslam Galull is offline  
Old 06/14/2015, 04:16   #10
 
kareemzone's Avatar
 
elite*gold: 0
Join Date: Mar 2010
Posts: 43
Received Thanks: 8
good job
kareemzone is offline  
Old 06/20/2015, 01:01   #11


 
​Exo's Avatar
 
elite*gold: 28
Join Date: Aug 2014
Posts: 4,096
Received Thanks: 2,649
I guess I released this thing some months ago, it's an actual Model Switch. Pretty faster as well.
​Exo is offline  
Thanks
1 User
Old 08/25/2015, 01:51   #12
 
spinal2's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 241
Received Thanks: 16
That Release Change Item IMG to news one only or Change all item status ?
spinal2 is offline  
Old 08/26/2015, 19:51   #13
 
**Lost_Hunter**'s Avatar
 
elite*gold: 0
Join Date: Oct 2014
Posts: 141
Received Thanks: 31
i think this already released
**Lost_Hunter** is offline  
Old 09/01/2015, 18:17   #14
 
elite*gold: 0
Join Date: Jul 2015
Posts: 100
Received Thanks: 28
Good job
Mody13337 is offline  
Old 09/27/2015, 20:44   #15
 
spinal2's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 241
Received Thanks: 16
Base in @ItsSoul Release . iam Start Work in a Model Swith Same Elamidas Itens .
So, Well actualy Iam Study Elamidas Engine and see alots Things Goods ..

Well See me Work based in @itsSoul Release and Elamidas ENGINE .

Model Swith
spinal2 is offline  
Reply


Similar Threads Similar Threads
Model Switcher
01/22/2015 - SRO Private Server - 34 Replies
so i was wondering how elamidas did it i was looking for hints how should i do something like that so guys any ideas about how to do or at least hints? thank you
Suche jemanden mit LC Model Switcher
11/26/2013 - Last Chaos - 1 Replies
topic meldet euch per pn oder im thread dann wird weiter besprochen lg
[Release] Switcher
08/11/2012 - Last Chaos - 42 Replies
Also wie vllt schon einigen aufgefallen ist steht der Switcher nun Allen frei zu verfügung! Im Zuge der gestrigen Erkenntnis ist nun die Version v0.20 online gegangen und kann ab sofort runtergeladen werden. http://chaosprojekt.com/banner/single/Switcher.pn g v0.21 Diese weißt einige Änderungen und Fixes im Vergleich zu der gestern bereitgestellten Version auf. Ich bitte euch deshalb alle diese aktuelle Version runterzuladen! Viel Spaß und wieder mal ein ganz dickes Dankeschön an TinyGuy...
[RELEASE] COD Patch Switcher
05/26/2012 - Call of Duty - 8 Replies
Hey epvp, ich biete hier meinen Patch Switcher für Call of Duty 2 und Call of Duty 4 an. Das Programm habe ich selber mit Visual Basic geschrieben. Features Das Tool ändert die Version des Spiels in eine beliebig andere (siehe Screens).
[RELEASE]DSS-Switcher by CroSSie
08/13/2011 - Metin2 Hacks, Bots, Cheats, Exploits & Macros - 954 Replies
So nochmal ne kleine beschreibung des bots. war der erste versuch iwie das boniswitchen zu automatisieren. bot arbeitet mit pixelgetcolor was für euch bedeutet: - braucht die gleiche Schriftfarbe (Arial) - ist teilweise sehr ungenau - brauch lang zum switchen eure vorteile: wenn der bot einwandfrei geht:



All times are GMT +2. The time now is 10:17.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.