- Katılım
- 6 Mayıs 2022
- Konular
- 30,467
- Mesajlar
- 30,764
- Tepkime puanı
- 43
- Sro Yaşı
- 4 yıl 24 gün
- Trophy Puan
- 48
- Sro Gold
- 310,114
1. Dont ask me to make this query faster
2. Dont flame me for being a lazyass and not using variables
3. Dont ask me for support
4. Dont PM me or anything else
5. If this has been posted b4, i dont give a fucking shit
6. EvaTools blablabla does that ye, but i had to write this cuz our eva didnt wanna work due to some heavy server lags...
PHP Code:[/LEFT]
2. Dont flame me for being a lazyass and not using variables
3. Dont ask me for support
4. Dont PM me or anything else
5. If this has been posted b4, i dont give a fucking shit
6. EvaTools blablabla does that ye, but i had to write this cuz our eva didnt wanna work due to some heavy server lags...
PHP Code:[/LEFT]
<code style="white-space:nowrap"> <!-- php buffer start --><code> Declare @Charname varchar (64)<br> Set @Charname = '600RR'<br> <br> Insert into _BlockedUser ([UserJID]<br> ,[UserID]<br> ,[Type]<br> ,[SerialNo]<br> ,[timeBegin]<br> ,[timeEnd])<br> <br> Values (<br> (Select UserJID from SRO_VT_SHARD.dbo._User Where CharID = <br> (Select CharID from SRO_VT_SHARD.dbo._Char Where CharName16 = @Charname)),<br> (Select StrUserID from dbo.TB_User where JID = (Select UserJID from SRO_VT_SHARD.dbo._User Where CharID = (Select CharID from SRO_VT_SHARD.dbo._Char Where CharName16 = @Charname))),<br> 1,<br> (Select MAX(SerialNo)+1 from _BlockedUser ),(Select MAX(timeBegin) from _BlockedUser),<br> (Select MAX(timeEnd) from _BlockedUser) ) <br> </code><!-- php buffer end --> </code>
PHP Code:
PHP Code:
<code style="white-space:nowrap"> <!-- php buffer start --><code> Declare @JID bigint<br><br>Use SRO_VT_SHARD<br> Set @JID = (Select JID From [SRO_VT_SHARD].[dbo].[_User]<br> Where CharID= (Select CharID from _Char Where Charname16 = 'CHARNAME HERE') )<br><br>USE SRO_VT_ACCOUNT<br> UPDATE [SRO_VT_ACCOUNT].[dbo].[SK_Silk] Set silk_own=silk_own+10000 Where JID=@JID <br> </code><!-- php buffer end --> </code>
Change the "/" to "*" if u want to "increase" the dmg
PHP Code:
Change the "/" to "*" if u want to "increase" the dmg
PHP Code:
<code style="white-space:nowrap"> <!-- php buffer start --><code> use SRO_VT_SHARD<br><br>DECLARE @MobCodename VARCHAR (64)<br>DECLARE @DivideBy INT<br>Declare @DMG INT <br><br>Set @DMG = '3500'<br>SET @MobCodename = 'MOB_SD_KEISAS_3'<br>set @DivideBy = '2'<br><br>update _RefSkill set Param5 = Param5/@DivideBy where ID like (select DefaultSkill_1 from _RefObjChar where ID = (select Link from _RefObjCommon where CodeName128 like @MobCodename))<br>and Param5 > @DMG<br>update _RefSkill set Param5 = Param5/@DivideBy where ID like (select DefaultSkill_2 from _RefObjChar where ID = (select Link from _RefObjCommon where CodeName128 like @MobCodename))<br>and Param5 > @DMG<br>update _RefSkill set Param5 = Param5/@DivideBy where ID like (select DefaultSkill_3 from _RefObjChar where ID = (select Link from _RefObjCommon where CodeName128 like @MobCodename))<br>and Param5 > @DMG<br>update _RefSkill set Param5 = Param5/@DivideBy where ID like (select DefaultSkill_4 from _RefObjChar where ID = (select Link from _RefObjCommon where CodeName128 like @MobCodename))<br>and Param5 > @DMG<br>update _RefSkill set Param5 = Param5/@DivideBy where ID like (select DefaultSkill_5 from _RefObjChar where ID = (select Link from _RefObjCommon where CodeName128 like @MobCodename))<br>and Param5 > @DMG<br>update _RefSkill set Param5 = Param5/@DivideBy where ID like (select DefaultSkill_6 from _RefObjChar where ID = (select Link from _RefObjCommon where CodeName128 like @MobCodename))<br>and Param5 > @DMG<br>update _RefSkill set Param5 = Param5/@DivideBy where ID like
