You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Can someone help me disable the following emitters?
I managed to disable emitter181 but I can't find the emitter for the rest of the effect.
Information:
I use the Client: 273 Freya High Five
I view the map with Unreal Editor
Sample MAP 24_18.unr
L2PE to disable the emitter
L2SMR to get the emitter location and compare
The effects I want to disable are related to the structure of the kamael that are usually in most cities.
I only managed to disable emitter181, which corresponds to the eye and its effect:
when disable emitter181 It looks like this to me:
i need to remove the rest of the effect but I don't know how to find the number of the corresponding emitter
I hope you can help me
Thanks
I apologize for my incompetence. The ability to trade is limited only for builder 1. Ordinary characters can trade with each other, and this has nothing to do with auto loot.)
Question
l2viserion
There are new changes in hopzone but I'm unable to fix it, not sure what I do wrong, can anybody help with below code to read the current votes?
protected static int getVotes()
{
InputStreamReader isr = null;
BufferedReader br = null;
try
{
if(!hopzoneUrl.endsWith(".html"))
hopzoneUrl+=".html";
URLConnection con = new URL(hopzoneUrl).openConnection();
con.addRequestProperty("User-Agent", "Mozilla/5.0");
isr = new InputStreamReader(con.getInputStream());
br = new BufferedReader(isr);
String line;
while ((line = br.readLine()) != null)
{
if (line.contains(":server-votes")||line.contains(":server-votes=")||line.contains("server-votes")||line.contains("server-votes=")||line.contains(":server-votes=\""))
{
int votes = Integer.valueOf(line.split("\"")[1].split("\"")[0].split("\"")[2]);
//Hopzone line source code:
// :server-votes="228"
return votes;
}
}
br.close();
Edited by l2viserionisr.close();
}
catch (Exception e)
{
System.out.println("[VoteRewardManager]: Problem occured while getting Hopzone votes. Error Trace: " + e.getMessage());
}
return -1;
}
help tag
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.