GM-PekeMixz Capitan Primero
Cantidad de envíos : 81 Fecha de inscripción : 24/07/2013 Edad : 26 Localización : Boulogne
| Tema: Configuracion desde el server Mar Jul 30, 2013 7:41 pm | |
| Buscan: - Código:
-
'Estadisticas Public Const STAT_MAXELV As Byte = 99 Public Const STAT_MAXHP As Integer = 999 Public Const STAT_MAXSTA As Integer = 999 Public Const STAT_MAXMAN As Integer = 2000 Public Const STAT_MAXHIT_UNDER36 As Byte = 99 Public Const STAT_MAXHIT_OVER36 As Integer = 999 Public Const STAT_MAXDEF As Byte = 99 Reemplazan por: - Código:
-
Public Const STAT_MAXELV As Byte = GetVar(App.Path & "Server.ini", "STAT", "Nivel") Public Const STAT_MAXHP As Integer = GetVar(App.Path & "Server.ini", "STAT", "MaxHP") Public Const STAT_MAXSTA As Integer = GetVar(App.Path & "Server.ini", "STAT", "MaxEnergia") Public Const STAT_MAXMAN As Integer = GetVar(App.Path & "Server.ini", "STAT", "MaxMana") Public Const STAT_MAXHIT_UNDER36 As Byte = GetVar(App.Path & "Server.ini", "STAT", "MAXHITUNDER") Public Const STAT_MAXHIT_OVER36 As Integer = GetVar(App.Path & "Server.ini", "STAT", "MAXHITOVER") Public Const STAT_MAXDEF As Byte = GetVar(App.Path & "Server.ini", "STAT", "MaxDEF") En el Server.ini agregan: Ahi al lado del igual agregan el numero que quieren segun lo que sea. ¿Que hace esto?: Facil, lee todo desde el server.ini envez de buscar la constante en el codigo y poner el numero desde el code. ¿Sirve?: No lo testié jajaja, lo hice recién en el foro porque nose si estaba. Saluditos ^^ FUEMNTES GS ZONE | |
|