HEy..
i want to know how i can make my 2hand +250.
With SMC max. plus is only +8....
So how i can do it with Database ?
ty
Printable View
HEy..
i want to know how i can make my 2hand +250.
With SMC max. plus is only +8....
So how i can do it with Database ?
ty
from smc is +255 (if server support if not 250) if you are developer if you are a gm only +8
There have fun put Item on 1. Slot [13] and Use this Query after this Teleport 1 Time ....
Code:USE [SRO_VT_SHARD]
--by Kev / InPanic-Community.net
Declare @CharName Varchar (64)
Declare @Plus Varchar (64)
Declare @Slot Varchar (64)
Declare @CharID INT
Declare @Item INT
Set @CharName = '[GM]Kev' -- Enter Your CharName
Set @Plus = '250' -- Plus OptLevel
Set @Slot = '13' -- First Inventory Slot
Set @CharID = (select CharID from _Char where CharName16 = @CharName)
Set @Item = ( select ItemID from _Inventory where CharID = @CharID and Slot = @Slot )
update _Items
set OptLevel = @Plus
where ID64 = @Item