PDA

View Full Version : Barrage attacks 2 people in single?



Jules
June 21st, 2010, 19:42
my barrage seems to be attacking 2, or more, persons while being in single wild.

I have checked barrage id in magichandler, playerhandler, client.java and all.



I can't find whats wrong!?

Edit : DeltaScape based btw.

my pker pure
June 21st, 2010, 20:03
Post me your magic handler file and ill have a look for you XD

Jules
June 21st, 2010, 20:08
Post me your magic handler file and ill have a look for you XD

Here's a link ghehe

Only the registered members can see the link.

`Deviant
June 21st, 2010, 20:10
Ice Barrage is multi, remove it's multi-hit ability.

Jules
June 21st, 2010, 20:13
Ice Barrage is multi, remove it's multi-hit ability.

I removed it from the multi-list.

`Deviant
June 21st, 2010, 20:15
Then it should be working. If you just removed it from the multi-list, meaning you just removed that it says it's a multi-hit spell, then you're supposed to remove the code that makes it hit more than one player on the tile spots around you. Be sure to compile.

Jules
June 21st, 2010, 20:22
Then it should be working. If you just removed it from the multi-list, meaning you just removed that it says it's a multi-hit spell, then you're supposed to remove the code that makes it hit more than one player on the tile spots around you. Be sure to compile.


// public static int multiSpells[] = {12963};

I guess thats not barrage, or is it?

Jules
June 21st, 2010, 21:09
Anyone?

my pker pure
June 21st, 2010, 21:14
Okay try this and tell me if it works


/*
* Handle magic spells
*
* Created by Mr. BrightSide
* Heavily modified by Bakatool. 55%'ish.
*/
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;

public class MagicHandler {
public static boolean itHeals, itFreezes, itPoisons, itReducesAttack, itTeleblocks;
public static String message;
public static int npcX, npcY, npcHP, hitDiff, xp, usesFirstGfx;
public static int playerX, playerY, playerHP;
public static int spellHeight, graphicHeight, endGFX;
public static int spellID, castAnimation, spellGFX, spellLevel, rune1,
rune1Am, rune2, rune2Am, rune3, rune3Am, rune4, rune4Am,
spellItemID;

// public static int multiSpells[] = {12963};

public static void addSpellNpc(int id, int Y, int X, int npcIndex) {
int offsetY = (X - npcX) * -1;
int offsetX = (Y - npcY) * -1;
if (usesFirstGfx != 0) {
if ((spellID != 1572) && (spellID != 1582) && (spellID != 1592)) {
GraphicsHandler.createNormalSpell(id, Y, X, offsetY, offsetX,
50, 95, (id + 1), spellHeight, spellHeight,
(npcIndex + 1), (id + 2), npcY, npcX);
} else {
if (spellID == 1572) {
GraphicsHandler.createNormalSpell(id, Y, X, offsetY,
offsetX, 50, 95, (id + 1), spellHeight,
spellHeight, (npcIndex + 1), 181, npcY, npcX);
}
if (spellID == 1582) {
GraphicsHandler.createNormalSpell(id, Y, X, offsetY,
offsetX, 50, 95, (id + 1), spellHeight,
spellHeight, (npcIndex + 1), 180, npcY, npcX);
}
if (spellID == 1592) {
GraphicsHandler.createNormalSpell(id, Y, X, offsetY,
offsetX, 50, 95, (id + 1), spellHeight,
spellHeight, (npcIndex + 1), 179, npcY, npcX);
}
}
} else {
GraphicsHandler.createNormalSpell(id, Y, X, offsetY, offsetX, 50,
95, (id + 1), spellHeight, spellHeight, (npcIndex + 1),
(id + 2), npcY, npcX);
}
}

public static void addSpellPlayer(int id, int Y, int X, int playerIndex) {
int offsetY = (X - playerX) * -1;
int offsetX = (Y - playerY) * -1;
if (usesFirstGfx != 0) {
if ((spellID != 1572) && (spellID != 1582) && (spellID != 1592)) {
GraphicsHandler.createNormalSpell(id, Y, X, offsetY, offsetX,
50, 95, (id + 1), spellHeight, spellHeight,
(playerIndex + 1), (id + 2), playerY, playerX);
} else {
if (spellID == 1572) {
GraphicsHandler.createNormalSpell(id, Y, X, offsetY,
offsetX, 50, 95, (id + 1), spellHeight,
spellHeight, (playerIndex + 1), 181, playerY,
playerX);
}
if (spellID == 1582) {
GraphicsHandler.createNormalSpell(id, Y, X, offsetY,
offsetX, 50, 95, (id + 1), spellHeight,
spellHeight, (playerIndex + 1), 180, playerY,
playerX);
}
if (spellID == 1592) {
GraphicsHandler.createNormalSpell(id, Y, X, offsetY,
offsetX, 50, 95, (id + 1), spellHeight,
spellHeight, (playerIndex + 1), 179, playerY,
playerX);
}
}
} else {
GraphicsHandler.createNormalSpell(id, Y, X, offsetY, offsetX, 50,
95, (id + 1), spellHeight, spellHeight, (playerIndex + 1),
(id + 2), playerY, playerX);
}
}

public static int magicSpellNpc(int id, int playerId, int npcIndex,
int lvl) {
client p = (client) PlayerHandler.players[playerId];
String line = "";
String token = "";
String token2 = "";
String token2_2 = "";
String[] token3 = new String[20];
boolean EndOfFile = false;

BufferedReader characterfile = null;
try {
characterfile = new BufferedReader(new FileReader(
"config\\magicSpells.cfg"));
} catch (FileNotFoundException fileex) {
misc.println("[MagicHandler]: magicSpells.cfg: file not found.");
}
try {
line = characterfile.readLine();
} catch (IOException ioexception) {
misc
.println("[MagicHandler]: magicSpells.cfg: error loading file.");
}
while ((EndOfFile == false) && (line != null)) {
line = line.trim();
int spot = line.indexOf("=");
if (spot > -1) {
token = line.substring(0, spot);
token = token.trim();
token2 = line.substring(spot + 1);
token2 = token2.trim();
token2_2 = token2.replaceAll("\t\t", "\t");
token2_2 = token2_2.replaceAll("\t\t", "\t");
token2_2 = token2_2.replaceAll("\t\t", "\t");
token2_2 = token2_2.replaceAll("\t\t", "\t");
token2_2 = token2_2.replaceAll("\t\t", "\t");
token3 = token2_2.split("\t");
if (token.equals("spell")) {
spellID = Integer.parseInt(token3[0]);
castAnimation = Integer.parseInt(token3[1]);
spellGFX = Integer.parseInt(token3[2]);
usesFirstGfx = Integer.parseInt(token3[3]);
spellLevel = Integer.parseInt(token3[4]);
rune1 = Integer.parseInt(token3[5]);
rune1Am = Integer.parseInt(token3[6]);
rune2 = Integer.parseInt(token3[7]);
rune2Am = Integer.parseInt(token3[8]);
rune3 = Integer.parseInt(token3[9]);
rune3Am = Integer.parseInt(token3[10]);
rune4 = Integer.parseInt(token3[11]);
rune4Am = Integer.parseInt(token3[12]);
spellItemID = Integer.parseInt(token3[13]);
hitDiff = Integer.parseInt(token3[14]);
xp = Integer.parseInt(token3[15]);
spellHeight = Integer.parseInt(token3[16]);
graphicHeight = Integer.parseInt(token3[17]);
String spellName = token3[18];
endGFX = (spellGFX + 1);
if (id == spellID) {
if (lvl >= spellLevel) {
if (!p.playerHasItem(rune1, rune1Am)
|| !p.playerHasItem(rune2, rune2Am)
|| !p.playerHasItem(rune3, rune3Am)
|| !p.playerHasItem(rune4, rune4Am)) {
p
.sM("You don't have enough runes to cast this spell.");
} else {
if (spellItemID != -1) {
if (p.playerEquipment[p.playerWeapon] != spellItemID) {
p.sM("You need a "
+ p.getItemName(spellItemID)
+ " to cast this spell.");
return -1;
}
}
if (p.playerHasItem(rune1, rune1Am)
&& p.playerHasItem(rune2, rune2Am)
&& p.playerHasItem(rune3, rune3Am)
&& p.playerHasItem(rune4, rune4Am)) {
if (p.spellHitTimer <= 0) {
p.setAnimation(castAnimation);
p.fletchTime = 3;
addSpellNpc(spellGFX, p.absY,
p.absX, npcIndex);
p.spellHitTimer = 4;
p.isSpellNPC = true;
p.castSpell = true;
p.spellHit = misc.random(hitDiff);
if ((spellID == 1160)
|| (spellID == 1163)
|| (spellID == 1166)
|| (spellID == 1169)) {
if (p.playerEquipment[p.playerHands] == 777) {
hitDiff = (misc
.random(hitDiff + 3));
p.spellHit = hitDiff; // fixed
// bonus
// -bakatool.
}
}
if (spellID == 1190) {
if (p.SaradominStrike && p.arenaSpellTimer <= 0) {
p.spellHit = misc.random(20);
} else {
p.spellHit = misc.random(30);
}
}
if (spellID == 1191) {
if (p.GuthixClaws && p.arenaSpellTimer <= 0) {
p.spellHit = misc.random(20);
} else {
p.spellHit = misc.random(30);
}
}
if (spellID == 1192) {
if (p.ZamorakFlames && p.arenaSpellTimer <= 0) {
p.spellHit = misc.random(20);
} else {
p.spellHit = misc.random(30);
}
}
p.spellXP = xp;
p.rune1 = rune1;
p.rune1Am = rune1Am;
p.rune2 = rune2;
p.rune2Am = rune2Am;
p.rune3 = rune3;
p.rune3Am = rune3Am;
p.rune4 = rune4;
p.rune4Am = rune4Am;
if ((spellID == 12901)
|| (spellID == 12911)
|| (spellID == 12919)
|| (spellID == 12929)) {
itHeals = true;
} else {
itHeals = false;
}
if ((spellID == 1572)
|| (spellID == 1582)
|| (spellID == 1592)
|| (spellID == 12861)
|| (spellID == 12881)
|| (spellID == 12871)
|| (spellID == 12891)) { // Fixed
// bakatool
// added
// all
// freeze
// spells.
itFreezes = true;
} else {
itFreezes = false;
}
if ((spellID == 12939)
|| (spellID == 12963)
|| (spellID == 12951)
|| (spellID == 12975)) {
itPoisons = true;
} else {
itPoisons = false;
}
if ((spellID == 1153)
|| (spellID == 12987)
|| (spellID == 13011)
|| (spellID == 12999)
|| (spellID == 13023)) {
itReducesAttack = true;
} else {
itReducesAttack = false;
}
}
}
}
return npcIndex;
} else {
p.sM("You need a magic level of "
+ spellLevel
+ " or better to cast this spell.");
return -1;
}
}
}
} else {
if (line.equals("[EOF]")) {
try {
characterfile.close();
} catch (IOException ioexception) {

}
}
}
try {
line = characterfile.readLine();
} catch (IOException ioexception1) {
EndOfFile = true;
}
}
try {
characterfile.close();
} catch (IOException ioexception) {

}
return -1;
}

public static int magicSpellPlayer(int id, int playerId,
int playerIndexToAttack,
int lvl) {
client p = (client) PlayerHandler.players[playerId];
String line = "";
String token = "";
String token2 = "";
String token2_2 = "";
String[] token3 = new String[20];
boolean EndOfFile = false;

BufferedReader characterfile = null;
try {
characterfile = new BufferedReader(new FileReader(
"config\\magicSpells.cfg"));
} catch (FileNotFoundException fileex) {
misc.println("[MagicHandler]: magicSpells.cfg: file not found.");
}
try {
line = characterfile.readLine();
} catch (IOException ioexception) {
misc
.println("[MagicHandler]: magicSpells.cfg: error loading file.");
}
while ((EndOfFile == false) && (line != null)) {
line = line.trim();
int spot = line.indexOf("=");
if (spot > -1) {
token = line.substring(0, spot);
token = token.trim();
token2 = line.substring(spot + 1);
token2 = token2.trim();
token2_2 = token2.replaceAll("\t\t", "\t");
token2_2 = token2_2.replaceAll("\t\t", "\t");
token2_2 = token2_2.replaceAll("\t\t", "\t");
token2_2 = token2_2.replaceAll("\t\t", "\t");
token2_2 = token2_2.replaceAll("\t\t", "\t");
token3 = token2_2.split("\t");
if (token.equals("spell")) {
spellID = Integer.parseInt(token3[0]);
castAnimation = Integer.parseInt(token3[1]);
spellGFX = Integer.parseInt(token3[2]);
usesFirstGfx = Integer.parseInt(token3[3]);
spellLevel = Integer.parseInt(token3[4]);
rune1 = Integer.parseInt(token3[5]);
rune1Am = Integer.parseInt(token3[6]);
rune2 = Integer.parseInt(token3[7]);
rune2Am = Integer.parseInt(token3[8]);
rune3 = Integer.parseInt(token3[9]);
rune3Am = Integer.parseInt(token3[10]);
rune4 = Integer.parseInt(token3[11]);
rune4Am = Integer.parseInt(token3[12]);
spellItemID = Integer.parseInt(token3[13]);
hitDiff = Integer.parseInt(token3[14]);
xp = Integer.parseInt(token3[15]);
spellHeight = Integer.parseInt(token3[16]);
graphicHeight = Integer.parseInt(token3[17]);
String spellName = token3[18];
endGFX = (spellGFX + 1);
if (id == spellID) {
if (lvl >= spellLevel) {
if (!p.playerHasItem(rune1, rune1Am)
|| !p.playerHasItem(rune2, rune2Am)
|| !p.playerHasItem(rune3, rune3Am)
|| !p.playerHasItem(rune4, rune4Am)) {
p
.sM("You don't have enough runes to cast this spell.");
} else {
if (spellItemID != -1) {
if (p.playerEquipment[p.playerWeapon] != spellItemID) {
p.sM("You need a "
+ p.getItemName(spellItemID)
+ " to cast this spell.");
return -1;
}
}
if (p.playerHasItem(rune1, rune1Am)
&& p.playerHasItem(rune2, rune2Am)
&& p.playerHasItem(rune3, rune3Am)
&& p.playerHasItem(rune4, rune4Am)) {
if (p.spellHitTimer <= 0) {
p.setAnimation(castAnimation);
p.fletchTime = 3;
addSpellPlayer(spellGFX, p.absY,
p.absX, playerIndexToAttack);
p.spellHitTimer = 4;
p.isSpellNPC = false;
p.castSpell = true;
p.spellHit = misc.random(hitDiff);
if ((spellID == 1160)
|| (spellID == 1163)
|| (spellID == 1166)
|| (spellID == 1169)) {
if (p.playerEquipment[p.playerHands] == 777) {
hitDiff = (misc
.random(hitDiff + 3));
p.spellHit = hitDiff;
}
}
if (spellID == 1190) {
if (p.SaradominStrike && p.arenaSpellTimer <= 0) {
p.spellHit = misc.random(20);
} else {
p.spellHit = misc.random(30);
}
}
if (spellID == 1191) {
if (p.GuthixClaws && p.arenaSpellTimer <= 0) {
p.spellHit = misc.random(20);
} else {
p.spellHit = misc.random(30);
}
}
if (spellID == 1192) {
if (p.ZamorakFlames && p.arenaSpellTimer <= 0) {
p.spellHit = misc.random(20);
} else {
p.spellHit = misc.random(30);
}
}
p.spellXP = xp;
p.rune1 = rune1;
p.rune1Am = rune1Am;
p.rune2 = rune2;
p.rune2Am = rune2Am;
p.rune3 = rune3;
p.rune3Am = rune3Am;
p.rune4 = rune4;
p.rune4Am = rune4Am;
if ((spellID == 12901)
|| (spellID == 12911)
|| (spellID == 12919)
|| (spellID == 12929)) {
itHeals = true;
} else {
itHeals = false;
}

if ((spellID == 12445)) {
itTeleblocks = true;
} else {
itTeleblocks = false;
}
if ((spellID == 1572)
|| (spellID == 1582)
|| (spellID == 1592)
|| (spellID == 12861)
|| (spellID == 12881)
|| (spellID == 12871)
|| (spellID == 12891)) { // Fixed
// bakatool
// added
// all
// freeze
// spells.
itFreezes = true;
} else {
itFreezes = false;
}
if ((spellID == 12939)
|| (spellID == 12963)
|| (spellID == 12951)
|| (spellID == 12975)) {
itPoisons = true;
} else {
itPoisons = false;
}
if ((spellID == 1153)
|| (spellID == 12987)
|| (spellID == 13011)
|| (spellID == 12999)
|| (spellID == 13023)) {
itReducesAttack = true;
} else {
itReducesAttack = false;
}
}
}
}
return playerIndexToAttack;
} else {
p.sM("You need a magic level of "
+ spellLevel
+ " or better to cast this spell.");
return -1;
}
}
}
} else {
if (line.equals("[EOF]")) {
try {
characterfile.close();
} catch (IOException ioexception) {

}
}
}
try {
line = characterfile.readLine();
} catch (IOException ioexception1) {
EndOfFile = true;
}
}
try {
characterfile.close();
} catch (IOException ioexception) {

}
return -1;
}
}

Jules
June 22nd, 2010, 16:51
I tried this just now and it didn't work.

Could this be a client error?