Attribute GM Command

11/10/2012 03:02 bigspud#1
Does anyone know how to edit the amount of attribute points you have with a command or can i edit a file?

Quote:
Originally Posted by bigspud View Post
Does anyone know how to edit the amount of attribute points you have with a command or can i edit a file?
Forgot to say im using a 5165 server.
11/10/2012 15:51 sonofskeletor#2
client.Entity.Attributes += Data[1] some shit like that
11/11/2012 11:13 AudaciousOrange#3
-Locate where the commands are in your server.
-Add a new command in the switch statement using the first string in the array (command[0]) as lets say "strength".
-In that use the 2nd (command[1]) string in the array and use that to change the attribute.
-Locate where the attribute is. Let's say MyCharacter.Properties.Strength and then set it equal to the command[1] value.