Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[SHARE] FULL GS SOURCE - No More Selling

Newbie Spellweaver
Joined
Sep 21, 2014
Messages
33
Reaction score
1
still can't figure it out how to add item using GM command. o_O
dxincommand.h
dxincommand.cpp
 
Last edited:
Newbie Spellweaver
Joined
Sep 21, 2014
Messages
33
Reaction score
1
Try /makeitem
Thank you lars. I've already tried it, but it only works on the bin files given by Quiirex. I can't make items on the emulator I've compiled.
And besides that, it seems that the client is immune to editing and alterations. :cautious::sleep:

Screenshot 2023-04-10 091109 copy - [SHARE] FULL GS SOURCE - No More Selling - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Computers are fast; programmers keep it slow.
Joined
Feb 15, 2016
Messages
536
Reaction score
371
Thank you lars. I've already tried it, but it only works on the bin files given by Quiirex. I can't make items on the emulator I've compiled.
And besides that, it seems that the client is immune to editing and alterations. :cautious::sleep:

View attachment 173827
Better check your src for the keyword then? i.e /make /makeitem or even /whois from there you can find all sorts of commands

In addition to the commands above, iirc /makeitem is also the same as /whysoserious
 
Joined
Mar 20, 2012
Messages
760
Reaction score
369
Character level rollback to 1 somethings wrong in the DB please help
SQL:
USE [RanGameS1]
GO

/****** Object: StoredProcedure [dbo].[ChaInfoUpdateBase] Script Date: 03/03/2021 2:36:21 PM ******/
DROP PROCEDURE [dbo].[ChaInfoUpdateBase]
GO

/****** Object: StoredProcedure [dbo].[ChaInfoUpdateBase] Script Date: 03/03/2021 2:36:21 PM ******/
SET ANSI_NULLS ON
GO

SET QUOTED_IDENTIFIER ON
GO

CREATE PROCEDURE [dbo].[ChaInfoUpdateBase]
@ChaBright int,
@Chalevel int,
@Chamoney money,
@ChaDex int,
@ChaIntel int,
@Chaschool int,
@ChaHair int,
@ChaFace int,
@Chaliving int,
@Chastrong int,
@Chapower int,
@Chaspirit int,
@Chastrength int,
@ChastRemain int,
@ChaAttackP int,
@ChaDefenseP int,
@ChaFightA int,
@ChashootA int,
@ChaExp money,
@ChaskillPoint int,
@ChaHP int,
@ChamP int,
@ChasP int,
@ChaPK int,
@ChastartMap int,
@ChastartGate int,
@ChaposX float,
@ChaposY float,
@ChaposZ float,
@ChasaveMap int,
@ChasavePosX float,
@ChasavePosY float,
@ChasavePosZ float,
@ChareturnMap int,
@ChareturnPosX float,
@ChareturnPosY float,
@ChareturnPosZ float,
@ChareExp money,
@ChasafeTime smallint,
@ChacP int,
@ChaNum int,
@ChamacroT int,
@SkillSlotNum int,
@CharebornNum int
AS
BEGIN
SET NOCOUNT ON

UPDATE dbo.ChaInfo
SET ChaBright = @ChaBright,
ChaLevel = @Chalevel,
ChaMoney = @Chamoney,
ChaDex = @ChaDex,
ChaIntel = @ChaIntel,

ChaSchool = @Chaschool,
ChaHair = @ChaHair,
ChaFace = @ChaFace,
ChaLiving = @Chaliving,
ChaStrong = @Chastrong,

ChaPower = @Chapower,
ChaSpirit = @Chaspirit,
ChaStrength = @Chastrength,
ChaStRemain = @ChastRemain,
ChaAttackP = @ChaAttackP,

ChaDefenseP = @ChaDefenseP,
ChaFightA = @ChaFightA,
ChaShootA = @ChashootA,
ChaExp = @ChaExp,
ChaSkillPoint = @ChaskillPoint,

ChaHP = @ChaHP,
ChaMP = @ChamP,
ChaSP = @ChasP,
ChaPK = @ChaPK,
ChaStartMap = @ChastartMap,

ChaStartGate = @ChastartGate,
ChaPosX = @ChaposX,
ChaPosY = @ChaposY,
ChaPosZ = @ChaposZ,
ChaSaveMap = @ChasaveMap,

ChaSavePosX = @ChasavePosX,
ChaSavePosY = @ChasavePosY,
ChaSavePosZ = @ChasavePosZ,
ChaReturnMap = @ChareturnMap,
ChaReturnPosX = @ChareturnPosX,

ChaReturnPosY = @ChareturnPosY,
ChaReturnPosZ = @ChareturnPosZ,
ChaReExp = @ChareExp,
ChaSafeTime = @ChasafeTime,
ChaCP = @ChacP,
ChaMacroT = @ChamacroT,
SkillSlotNum = @SkillSlotNum,
ChaRebornNum = @CharebornNum

WHERE ChaNum = @ChaNum

exec sp_DeleteChaResetInfo @ChaNum

SET NOCOUNT ON
END


GO
 
Initiate Mage
Joined
Jan 19, 2023
Messages
2
Reaction score
0
can someone make a tutorial on how to use this file from scratch. im interested in making my own ran server
 
Newbie Spellweaver
Joined
Oct 3, 2022
Messages
26
Reaction score
1
This error is quite unusual.

Has anyone encountered this? - Agentserver

[14:42:58] [ERROR] BroadcastToField CH 4294967295
[14:42:58] [INFO ] Connection close. SlotType 0, UserNum -1, CloseType 21, ErrorType 995
[14:42:58] [ERROR] Unknown reason connection close. Close Type 21, Error Type 995
 
Newbie Spellweaver
Joined
Apr 22, 2023
Messages
34
Reaction score
10
Has anyone fixed this? mind to share?

I tried the SetItemList on this thread, still no luck.
 

Attachments

You must be registered for see attachments list
Back
Top