WhoTeR Director de Tropas
Cantidad de envíos : 143 Fecha de inscripción : 28/07/2013
| Tema: Cambiar el color de los nick de los GM's Mar Jul 30, 2013 7:59 pm | |
| Servidor:- Spoiler:
Bueno si tienen ya agregada la jerarquia de Administrador buscan: - Código:
-
<ADMINISTRADOR> Reemplazan todo por esto: - Código:
-
If UserList(TempCharIndex).flags.Privilegios > 3 Then Stat = Stat & " <Administrador> ~255~255~255~1~0" ElseIf UserList(TempCharIndex).flags.Privilegios > 2 Then Stat = Stat & " <Game Master> ~0~128~128~1~0" ElseIf UserList(TempCharIndex).flags.Privilegios > 1 Then Stat = Stat & " <Event Master> ~191~128~0~1~0" ElseIf Criminal(TempCharIndex) Then Stat = Stat & " <CRIMINAL> ~255~0~0~1~0" ElseIf Ciudadano(TempCharIndex) Then Stat = Stat & " <CIUDADANO> ~64~191~255~1~0" ElseIf Neutral(TempCharIndex) Then Stat = Stat & " <NEUTRAL> ~120~120~120~1~0" End If Cliente:- Spoiler:
Buscan: - Código:
-
<ADMINISTRADOR> Reemplazan todo eso por esto: - Código:
-
If TempChar.priv <> 0 Then If TempChar.priv = 2 Then 'SEMI DIOS Call Dialogos.DrawText(iPPx - lCenter, iPPy + 30, TempChar.Nombre, RGB(198, 128, 0)) Call Dialogos.DrawText(iPPx - lCenter - 33, iPPy + 43, "<Event Master>", RGB(198, 128, 0)) ElseIf TempChar.priv = 3 Then 'DIOS Call Dialogos.DrawText(iPPx - lCenter, iPPy + 30, TempChar.Nombre, RGB(0, 128, 128)) Call Dialogos.DrawText(iPPx - lCenter - 2, iPPy + 43, "<Game Master>", RGB(0, 128, 128)) ElseIf TempChar.priv = 4 Then 'ADMIN Call Dialogos.DrawText(iPPx - lCenter, iPPy + 30, TempChar.Nombre, RGB(255, 255, 255)) Call Dialogos.DrawText(iPPx - lCenter - 33, iPPy + 43, "<Administrador>", RGB(255, 255, 255)) End If End If Ahora van a la carpeta del cliente>>>>INIT>>>>colores.dat y ponen: - Citación :
- 'criminales
[Cr] R=0 G=255 B=0 'ciudadanos [Ci] R=0 G=128 B=255 [0] R=0 G=0 B=0 'VIP [1] R=0 G=242 B=255 'semidioses [2] R=191 G=128 B=0 'dioses [3] R=0 G=128 B=128 'Admin [4] R=255 G=255 B=255 'Consejo de bander [5] R=0 G=255 B=255 'caos [6] R=185 G=0 B=4 'Admin [7] R=89 G=25 B=250 [8] R=0 G=0 B=0 [9] R=0 G=0 B=0 [10] R=0 G=0 B=0 [11] R=0 G=0 B=0 [12] R=0 G=0 B=0 [13] R=0 G=0 B=0 [14] R=0 G=0 B=0 [15] R=0 G=0 B=0 [16] R=0 G=0 B=0 [17] R=0 G=0 B=0 [18] R=0 G=0 B=0 [19] R=0 G=0 B=0 [20] R=0 G=0 B=0 [21] R=0 G=0 B=0 [22] R=0 G=0 B=0 [23] R=0 G=0 B=0 [24] R=0 G=0 B=0 'Ad [25] R=255 G=255 B=255 [26] R=0 G=0 B=0 [27] R=0 G=0 B=0 [28] R=0 G=0 B=0 [29] R=0 G=0 B=0 [30] R=0 G=0 B=0 [31] R=0 G=0 B=0 [32] R=0 G=0 B=0 [33] R=0 G=0 B=0 [34] R=0 G=0 B=0 [35] R=0 G=0 B=0 [36] R=0 G=0 B=0 [37] R=0 G=0 B=0 [38] R=0 G=0 B=0 [39] R=0 G=0 B=0 [40] R=0 G=0 B=0 [41] R=0 G=0 B=0 [42] R=0 G=0 B=0 [43] R=0 G=0 B=0 [44] R=0 G=0 B=0 [45] R=0 G=0 B=0 [46] R=0 G=0 B=0 [47] R=0 G=0 B=0 [48] R=0 G= B=0 [49] R=0 G=0 B=0 [50] R=0 G=0 B=0
Eso es todo. Ahora si no tienen la jerarquia de Administrdor hacen esto: Servidor:- Spoiler:
Buscan: - Código:
-
<Game Master> Reemplazan por todo esto: - Código:
-
If UserList(TempCharIndex).flags.Privilegios > 2 Then Stat = Stat & " <Game Master> ~0~128~128~1~0" ElseIf UserList(TempCharIndex).flags.Privilegios > 1 Then Stat = Stat & " <Event Master> ~191~128~0~1~0" ElseIf Criminal(TempCharIndex) Then Stat = Stat & " <CRIMINAL> ~255~0~0~1~0" ElseIf Ciudadano(TempCharIndex) Then Stat = Stat & " <CIUDADANO> ~64~191~255~1~0" ElseIf Neutral(TempCharIndex) Then Stat = Stat & " <NEUTRAL> ~120~120~120~1~0" End If Cliente:- Spoiler:
Buscan: - Código:
-
<Game Master> Reemplazan todo por esto: - Código:
-
If TempChar.priv <> 0 Then If TempChar.priv = 2 Then 'SEMI DIOS Call Dialogos.DrawText(iPPx - lCenter, iPPy + 30, TempChar.Nombre, RGB(198, 128, 0)) Call Dialogos.DrawText(iPPx - lCenter - 33, iPPy + 43, "<Event Master>", RGB(198, 128, 0)) ElseIf TempChar.priv = 3 Then 'DIOS Call Dialogos.DrawText(iPPx - lCenter, iPPy + 30, TempChar.Nombre, RGB(0, 128, 128)) Call Dialogos.DrawText(iPPx - lCenter - 2, iPPy + 43, "<Game Master>", RGB(0, 128, 128)) End If End If Ahora van Carpeta Cliente>>>>INIT>>>>colores.dat reemplazan todo por esto: - Citación :
- 'criminales
[Cr] R=0 G=255 B=0 'ciudadanos [Ci] R=0 G=128 B=255 [0] R=0 G=0 B=0 'VIP [1] R=0 G=242 B=255 'semidioses [2] R=191 G=128 B=0 'dioses [3] R=0 G=128 B=128 'Admin [4] R=255 G=255 B=255 'Consejo de bander [5] R=0 G=255 B=255 'caos [6] R=185 G=0 B=4 'Admin [7] R=89 G=25 B=250 [8] R=0 G=0 B=0 [9] R=0 G=0 B=0 [10] R=0 G=0 B=0 [11] R=0 G=0 B=0 [12] R=0 G=0 B=0 [13] R=0 G=0 B=0 [14] R=0 G=0 B=0 [15] R=0 G=0 B=0 [16] R=0 G=0 B=0 [17] R=0 G=0 B=0 [18] R=0 G=0 B=0 [19] R=0 G=0 B=0 [20] R=0 G=0 B=0 [21] R=0 G=0 B=0 [22] R=0 G=0 B=0 [23] R=0 G=0 B=0 [24] R=0 G=0 B=0 'Ad [25] R=255 G=255 B=255 [26] R=0 G=0 B=0 [27] R=0 G=0 B=0 [28] R=0 G=0 B=0 [29] R=0 G=0 B=0 [30] R=0 G=0 B=0 [31] R=0 G=0 B=0 [32] R=0 G=0 B=0 [33] R=0 G=0 B=0 [34] R=0 G=0 B=0 [35] R=0 G=0 B=0 [36] R=0 G=0 B=0 [37] R=0 G=0 B=0 [38] R=0 G=0 B=0 [39] R=0 G=0 B=0 [40] R=0 G=0 B=0 [41] R=0 G=0 B=0 [42] R=0 G=0 B=0 [43] R=0 G=0 B=0 [44] R=0 G=0 B=0 [45] R=0 G=0 B=0 [46] R=0 G=0 B=0 [47] R=0 G=0 B=0 [48] R=0 G= B=0 [49] R=0 G=0 B=0 [50] R=0 G=0 B=0
| |
|
Rango Administrador
Cantidad de envíos : 191 Fecha de inscripción : 13/07/2013
| Tema: Re: Cambiar el color de los nick de los GM's Mar Jul 30, 2013 9:15 pm | |
| Muy buen aporte.
Si no me equivoco es para 13.0?.
Seguí asi!
Suerte | |
|
WhoTeR Director de Tropas
Cantidad de envíos : 143 Fecha de inscripción : 28/07/2013
| Tema: Re: Cambiar el color de los nick de los GM's Miér Jul 31, 2013 8:17 pm | |
| | |
|
Contenido patrocinado
| Tema: Re: Cambiar el color de los nick de los GM's | |
| |
|