- Eyl
- 221
- 0
Brate Network PUS EDITOR
- Power up storedeki itemleri ; silmeye , düzenlemeye , tableyi temizlemeye vede power up storeye yeni item eklemeye yarar ( Berat Akpunar tarafından kodlanmıştır )
Brate Network Cash Adder
- Power up storedeki itemleri üyelerin satın alması için cash vermeye yarayan programdır ( Berat Akpunar tarafından kodlanmıştır )
Brate Network OTO Adder

Brate Network Userdata Log Viewer

Çalışması için :
Brate Network Level_UP Editor

Brate Network Online Sayacı

Brate Network Userdata Editor
- Databaseye extralar eklemeye yarayan programdır ( Berat Akpunar tarafından kodlanmıştır )

Brate Network Userdata Log Viewer
- Oyuna kimlerin , hangi saatte ne özellikte girip cıktıgını gösteren vede roll back aktarımı yapabilen programdır ( Berat Akpunar tarafından kodlanmıştır )

Çalışması için :
1
Kod:
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[USERDATA_ROLL]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[USERDATA_ROLL]
GO
CREATE TABLE [dbo].[USERDATA_ROLL] (
[UserId] [char] (104) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[stritem] [varchar] (400) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[Level] [int] NULL ,
[strskill] [varchar] (400) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,
[Loyalty] [int] NULL ,
[LoyaltyMonthly] [int] NULL ,
[Date] [datetime] NOT NULL ,
[No] [int] IDENTITY (1, 1) NOT FOR REPLICATION NOT NULL ,
[DEX] [int] NULL ,
[STA] [int] NULL ,
[CHA] [int] NULL ,
[STRONG] [int] NULL ,
[INTEL] [int] NULL ,
[GOLD] [int] NULL ,
[POINTS] [int] NULL
) ON [PRIMARY]
GO
2
Kod:
CREATE PROCEDURE dbo.Roll
@UserId char(30)
AS
declare @strItem varchar
declare @loyalty int
declare @loyaltymonthly int
declare @level int
declare @points int
declare @strskill varchar
declare @gold int
declare @cha int
declare @sta int
declare @intel int
declare @dex int
declare @strong int
select @gold = Gold from userdata where struserid=@UserId
select @dex = Dex from userdata where struserid=@UserId
select @sta = Sta from userdata where struserid=@UserId
select @strong = Strong from userdata where struserid=@UserId
select @intel = Intel from userdata where struserid=@UserId
select @cha = Cha from userdata where struserid=@UserId
select @StrItem = stritem from userdata where struserid=@UserId
select @loyalty = loyalty from userdata where struserid=@UserId
select @loyaltymonthly = loyaltymonthly from userdata where struserid=@UserId
select @level = [level] from userdata where struserid=@UserId
select @strskill= strskill from userdata where struserid=@UserId
select @points=points from userdata where struserid=@UserId
INSERT INTO USERDATA_ROLL VALUES (@UserId,@StrItem,@level,@strskill,@loyalty,@loyaltymonthly,getdate(),@DEX,@STA,@CHA,@STRONG,@intel,@GOLD,@points)
UPDATE USERDATA_ROLL set stritem=(select stritem from userdata where struserid=@UserId) where UserId=@UserId and [NO] = (select top 1 [NO] from userdata_roll order by [NO] desc )
UPDATE USERDATA_ROLL set strskill=(select strskill from userdata where struserid=@UserId) where UserId=@UserId and [NO] = (select top 1 [NO] from userdata_roll order by [NO] desc )
UPDATE USERDATA_ROLL set strong=@strong,sta=@sta,dex=@dex,cha=@cha,intel=@intel,gold=@gold,points=@points where UserId=@UserId and [NO] = (select top 1 [NO] from userdata_roll order by [NO] desc )
GO
3
Kod:
CREATE PROCEDURE dbo.RollAt
@ID char(50),@NO int AS
declare @loyalty int
declare @loyaltymonthly int
declare @stritem varchar
declare @strskill varchar
declare @sta int
declare @strong int
declare @dex int
declare @intel int
declare @cha int
declare @gold int
declare @level int
declare @points int
select @loyalty=loyalty from userdata_roll where userid=@ID and [no]=@NO
select @loyaltymonthly=loyaltymonthly from userdata_roll where userid=@ID and [no]=@NO
select @strskill=strskill from userdata_roll where userid=@ID and [no]=@NO
select @dex=dex from userdata_roll where userid=@ID and [no]=@NO
select @strong=strong from userdata_roll where userid=@ID and [no]=@NO
select @intel=intel from userdata_roll where userid=@ID and [no]=@NO
select @cha=cha from userdata_roll where userid=@ID and [no]=@NO
select @sta=sta from userdata_roll where userid=@ID and [no]=@NO
select @gold=gold from userdata_roll where userid=@ID and [no]=@NO
select @level=[level] from userdata_roll where userid=@ID and [no]=@NO
select @points=points from userdata_roll where userid=@ID and [no]=@NO
update userdata set loyalty=@loyalty,loyaltymonthly=@loyaltymonthly,points=@points,stritem=(select stritem from userdata_roll where struserid=@ID and [no]=@NO),strskill=(select strskill from userdata_roll where struserid=@ID and [no]=@NO),cha=@cha,intel=@intel,sta=@sta,dex=@dex,strong=@strong,gold=@gold,[level]=@level where struserid=@ID
GO
4
Kod:
EXEC ROLL @id
kodunu load_user_data proceduresinde
SELECT Nation, Race, Class, HairColor, Rank, Title, [Level], [Exp], Loyalty, Face, City, Knights, Fame,
Hp, Mp, Sp, Strong, Sta, Dex, Intel, Cha, Authority, Points, Gold, [Zone], Bind, PX, PZ, PY, dwTime, strSkill, strItem,strSerial, sQuestCount, strQuest, MannerPoint, LoyaltyMonthly
FROM USERDATA WHERE strUserId = @id
kodunun üzerine yapıştırın ve sorunsuz şekilde program çalışsın.
- Level Atlama seviyelerini düzenleyen programdır ( Berat Akpunar tarafından kodlanmıştır )

Brate Network Online Sayacı
- Program acıldıktan son ana kadar en fazla kaç user online olduğunu sayımlayan programdır ( Berat Akpunar tarafından kodlanmıştır )

Brate Network Userdata Editor
- Üyelerinizin karakterlerini düzenlemeye yarayan programdır ( Berat Akpunar tarafından kodlanmıştır )
BrateNetwork Programlar indir - Upload.gen.tr
Son düzenleme:
2.000.000 TL ⚔️ Ödüllü MYKOv2 GENESIS | 24 Nisan 2026 ⚔️ Resmi Açılış Başlıyor!

