Dn items

10/21/2010 15:20 hahe123#1
Hey guys

i saw on some dekarons to DN items have : 1600 incrase atack like that 4x
Can some1 tell me how i can make like that dn gear
10/21/2010 16:49 pavkaspr#2
get [DEV] char and say /dev openconsole then click CTRL+SHIFT then put dekaron_custom 101 4 1000:255 1000:255 1000:255 1000:255 and you will drop dn ak helm with full slots and max attack :)
10/21/2010 18:01 hahe123#3
Quote:
Originally Posted by pavkaspr View Post
get [DEV] char and say /dev openconsole then click CTRL+SHIFT then put dekaron_custom 101 4 1000:255 1000:255 1000:255 1000:255 and you will drop dn ak helm with full slots and max attack :)


tyy :))) but were u find this index?? 1000:255 if i want add critical dmg or rate?
10/21/2010 18:15 pavkaspr#4
try random
10/21/2010 19:31 bullet21.#5
Itemoption_armor and Itemoption_Weapon, Both in share/item.
06/25/2011 16:02 lanliqin77#6
guys i have question how to make [DEV] char??? how plss
06/25/2011 16:29 imissblood#7
Quote:
Originally Posted by lanliqin77 View Post
guys i have question how to make [DEV] char??? how plss
u make it from the db... add the tag [DEKARON], [DEV], [GM] @ ur name

if u have ur own server...
06/25/2011 18:21 BlackLixt#8
iMiss should i post my tut here ? about making a gm dev or dekaron char?
06/26/2011 00:51 [Dev]KingTut#9
theirs a million tuts on how to make a gm char an how to do just about its just they scattered around lol use the search button
06/29/2011 16:23 1LOVE#10
how do you input this
06/29/2011 20:07 =Warmonger=#11
Quote:
Originally Posted by lanliqin77 View Post
guys i have question how to make [DEV] char??? how plss
Use these examples.

Code:
Use character;
Go
Update [user_character] Set character_name= '[GM]NAME' Where character_name= 'NAME'
Code:
Use character;
Go
Update [user_character] Set character_name= '[DEV]NAME' Where character_name= 'NAME'
Code:
Use character;
Go
Update [user_character] Set character_name= '[DEKARON]NAME' Where character_name= 'NAME'
06/29/2011 23:23 Joker¨#12
Quote:
Originally Posted by Warmonger1337 View Post
Use these examples.

Code:
Use character;
Go
Update [user_character] Set character_name= '[GM]NAME' Where character_name= 'NAME'
Code:
Use character;
Go
Update [user_character] Set character_name= '[DEV]NAME' Where character_name= 'NAME'
Code:
Use character;
Go
Update [user_character] Set character_name= '[DEKARON]NAME' Where character_name= 'NAME'

Good job brainiac, the guy doesn't know how to make a DEV char and you're giving him queries that he should execute without any tut at all...

@lanliqin77 Just go to the character database in SQL and do a bit of browsing (cause I don't have SQL on my comp) once you find a bunch of text that appears to be character names then you're at the right spot. Idk if it will work but you can try to press CTRL + F to find your character name, SQL does have his own search function but I doubt you'll find it. Anyhow find the char name and add any extension you want ([DEV]. [GM], [SAMSUNG]). There is a vid/pic tut around here somewhere, look it up.
06/29/2011 23:27 =Warmonger=#13
Quote:
Originally Posted by Joker¨ View Post
Good job brainiac, the guy doesn't know how to make a DEV char and you're giving him queries that he should execute without any tut at all...

@lanliqin77 Just go to the character database in SQL and do a bit of browsing (cause I don't have SQL on my comp) once you find a bunch of text that appears to be character names then you're at the right spot. Idk if it will work but you can try to press CTRL + F to find your character name, SQL does have his own search function but I doubt you'll find it. Anyhow find the char name and add any extension you want ([DEV]. [GM], [SAMSUNG]). There is a vid/pic tut around here somewhere, look it up.
If you want to be a wise guy. You will need to be smarter then that.

@lanliqin
To sum up his completely crazy explanation. Open up USER_CHARACTER and look for your character. To make it a GM simply put [GM] in front of your characters name. To make it a DEV or DEKARON character, just add [DEV] or [DEKARON] instead. The game auths by player name.

Example: Warmonger -> [GM]Warmonger
06/29/2011 23:30 Joker¨#14
Quote:
Originally Posted by Warmonger1337 View Post
If you want to be a wise guy. You will need to be smarter then that.

@lanliqin
To sum up his completely crazy explanation. Open up USER_CHARACTER and look for your character. To make it a GM simply put [GM] in front of your characters name. To make it a DEV or DEKARON character, just add [DEV] or [DEKARON] instead. The game auths by player name.

Example: Warmonger -> [GM]Warmonger
Sure sure, I have not seen server files in 3 years while you are most likely staring at it as I type. I'm glad you went with my "tut". How did you sum up my crazy explanation genius? How will he find the character? Its quite easy to say "Go there".
06/30/2011 00:11 =Warmonger=#15
Quote:
Originally Posted by Joker¨ View Post
Sure sure, I have not seen server files in 3 years while you are most likely staring at it as I type. I'm glad you went with my "tut". How did you sum up my crazy explanation genius? How will he find the character? Its quite easy to say "Go there".
Truly if you don't understand a query, then you shouldn't be messing with these files, as 100's of querys are executed every minute. I have only looked through the files for 1 day about a year ago.

Code:
Select * From [USER_CHARACTER] Where character_name = 'Warmonger'
Will only return the name he's already got, Thus.

Code:
Use character;
Go
Update [user_character] Set character_name= '[DEV]NAME' Where character_name= 'NAME'
Will be his best bet.