Hy i use 11.11.82 files with sql 2000.
How can i add for example 500 credit points for each user?
Hy i use 11.11.82 files with sql 2000.
How can i add for example 500 credit points for each user?
You need to run a query for the existing users, but for future users you can do the following step. Enterprise manager --> MuOnline --> Tables --> right click MEMB_INFO and click Design, find the column for credits and change the default value to 500 :)
can you give a query for that?
Last edited by daezugun; 18-12-12 at 04:10 PM.
The following command should give 5000 credits for all existing account, haven't tested it but it should work.
Code:UPDATE MEMB_INFO SET credits=5000
I what to know for sure if this points will be added on existing for example one user has 30 credits after it will have 5030 ?
Last edited by daezugun; 21-12-12 at 03:23 AM.
All credits is in the MEMB_Credits table
Code:UPDATE MEMB_Credits SET credits=5000
i think for having extra 5000 credits this should be.
UPDATE MEMB_Credits SET credits=credits + 5000
I just want to add to all members bonus credits as christmas gift.
So can anyone tell me for sure if: UPDATE MEMB_Credits SET credits=credits + 5000 would work? or what query i need to run for adding 5000 extra credit for all users?
I really need this fast. Thank you !
how bout in DmN_Shop_Credits?
This will add you extra credits, for example if you already have 500 credits, after using the query you will have 5500 credits.Code:UPDATE MEMB_INFO SET credits = credits + 5000
your_character_name - input an admin char for exampleUPDATE MEMB_Credits SET credits=credits + 5000 where memb___id=your_character_name
try this and go to database tables
1. make sure you remember the credits of that character ( ex. selected character has = 12 credits)
2. run the query upper
3.go to database tables and check for that character
4. if the character has ( ex. selected character has = 5012 credits)
Than next query will definitely work on all characters
UPDATE MEMB_Credits SET credits=credits + 5000
To add 5000 credits to all existing users:
use muonline
UPDATE MEMB_Credits
SET credits=credits + 5000
where credits > -1
Ur welcome m8, Happy New Year!