- Joined
- May 12, 2008
- Messages
- 2,530
- Reaction score
- 438
i need a script that can wipeout all the items exept the char level,etc/.
Use [RanGame1]
Update [ChaInfo] set [ChaInfo].ChaInven = NULL
Use [RanGame1]
Update [ChaInfo] set [ChaInfo].ChaInven = NULL
Update [ChaInfo] set [ChaInfo].ChaPutOnItems = NULL
Use [RanGame1]
Update [ChaInfo] set [ChaInfo].ChaInven = NULL
Update [ChaInfo] set [ChaInfo].ChaPutOnItems = NULL
Update [ChaInfo] set [ChaInfo].ChaSkills = NULL
Update [ChaInfo] set [ChaInfo].ChaSkillSlot = NULL
easy dude ^_^!! here try mine!!
Code:Use [RanGame1] Update [ChaInfo] set [ChaInfo].ChaInven = NULL
or if you want all of items to remove (you wearing and on the inventory) here
Code:Use [RanGame1] Update [ChaInfo] set [ChaInfo].ChaInven = NULL Update [ChaInfo] set [ChaInfo].ChaPutOnItems = NULL
and if you want to delete all items and all skills here:
Code:Use [RanGame1] Update [ChaInfo] set [ChaInfo].ChaInven = NULL Update [ChaInfo] set [ChaInfo].ChaPutOnItems = NULL Update [ChaInfo] set [ChaInfo].ChaSkills = NULL Update [ChaInfo] set [ChaInfo].ChaSkillSlot = NULL
that's all ^^ hope it helps
just go to RanGame1 and right click then new query and execute it will have like this :
(# row(s) affected)
NOTE: it will erase your char all items!!!
Use [RanGame1]
Update [ChaInfo]
set [ChaInfo].ChaInven = NULL
where ChaNum = (the num of Char)
Update [ChaInfo]
set [ChaInfo].ChaPutOnItems = NULL
where ChaNum = (the num of Char)
added if you want to erase only your choice character here's the script
Code:Use [RanGame1] Update [ChaInfo] set [ChaInfo].ChaInven = NULL where ChaNum = (the num of Char) Update [ChaInfo] set [ChaInfo].ChaPutOnItems = NULL where ChaNum = (the num of Char)
Replace (the num of Char) with the character number of the character you wish to erase the items.