Want to know how i can Disable the pk on a running server?
is there anyway to do that? or it will be on the new created characters only?
please need a fast replay!
pk is one of the important laws; not sure why it's disabled. Secondly, some skills is disabled; thats one of the important aspect of the game. This database is very limited if those are disabled.
[Release]Bunch of Useful Queries for MsSql Database Return Results 12/07/2015 - SRO PServer Guides & Releases - 4 Replies - Finds Inventory Items Based on Char name and some additional info
Use SRO_VT_SHARD_INIT
Select CH.CharName16, INV.CharID, INV.ItemID, IT.OptLevel, IT.RefItemID, INV.Slot, REF.ReqGender, REFC.ReqLevel1, REFC.CodeName128 From _Inventory As INV
Right Join _Items As IT On INV.ItemID = IT.ID64
Right Join _RefObjItem As REF On IT.RefItemID = REF.ID
Right Join _RefObjCommon As REFC On REFC.ID = REF.ID
Right Join _Char As CH On CH.CharID = INV.CharID
Where CH.CharName16 = 'Pal2aDoX' And...
[Release] Birth Village NPCs from Legends Return 08/20/2010 - CO2 PServer Guides & Releases - 4 Replies Hey guys just a small release. These are all the New NPCs from Legends Return.
Just replace the birth village NPCs in your source for mine. Also you will need to
add this to character.cs
Search for public byte DbUsedToday = 0;
under that place public int EquipQuest = 0;
If you are using MySql add this to your Characters table.
EquipQuest bigint 255 0 Allow Null
The default is 0 and it is unsigned.