I have some questions about some thread, I try to explain it.
1- Vitality configuration
Code: Select all
RateVitalityLevel1 = 1.5RateVitalityLevel2 = 2.RateVitalityLevel3 = 2.5RateVitalityLevel4 = 3.
I'm trying to configure me vitality system with my rates (XP x12), on server 1x (oficial) vitality lvl 4 gives to player +2 rates (1x3) its correct?
Ok, now if I need put on my server it correctly the correct config is it?:
Code: Select all
RateVitalityLevel1 = 0.12RateVitalityLevel2 = 0.16RateVitalityLevel3 = 0.20RateVitalityLevel4 = 0.25
2- Apella set
On ratail "Apella plate" can be worn by Elder? Or minimum status is Baron?
3- Import on java
Some one can tell me what import and package i need to put on this .java?
Code: Select all
Class PosicionPJ{ int x,y,z; String nombrePJ; public PosicionPJ (String nombre, int posX, int posY, int posZ) { this.nombrePJ = nombre; this.x = posX; this.y = posY; this.z = posZ; } public String getNombre() { return nombrePJ; } public String getPosX() { return x; } public String getPosY() { return y; } public String getPosZ() { return z; } public static void borrarPJ(L2PcInstance PJ) {salir: for (PosicionPJ esteDato : v) // Ahora el vector debera ser declarado como public static { if (PosicionPJ.getNombre().equals(PJ.geName())) { esteDato=null; break salir; } } } }
Thanks