i hope any one tell me how can i add Gold and Skill point To New User ( Account )
Thankyou all
Printable View
i hope any one tell me how can i add Gold and Skill point To New User ( Account )
Thankyou all
go to SRO_VT_SHARD (or w/e u name it ) >Programmability >Stored Procedures > dbo._AddNewChar >Modify< go down you'll see probably everything you'd need , from adding basic items to the new account , to everysingle thing skill points , stat points , gold etc.
true ^_^ so making hamachi server with my stuff?:D
In case you can't find it..(follow the stated path of matadoor)
that's the important part to add SP etc.PHP Code:INSERT INTO _Char (RefObjID, CharName16, Scale, Strength, Intellect, LatestRegion,PosX, PosY, PosZ, AppointedTeleport, InventorySize,
LastLogout, CurLevel, MaxLevel, RemainGold, RemainStatPoint, RemainSkillPoint, HP, MP, JobLvl_Trader, JobLvl_Hunter, JobLvl_Robber, WorldID,)
VALUES (@RefCharID, @CharName, @CharScale, 20, 20, @StartRegionID, @StartPos_X, @StartPos_Y, @StartPos_Z, @DefaultTeleport, 45,
GetDate(), 1, 1, 0, 0, 0, 200,200, 1, 1, 1, 1,)
As you can see there are the column notations listed of the _Char table + under "VALUES" the associated values e.g...
RemainSkillPoint = 0
HP = 200
MP = 200
Click parse, then click execute.
Posted via Mobile Device