Post: [PI] Iron Man Mode
03-08-2015, 01:45 AM #1
Stunz
Former Staff
(adsbygoogle = window.adsbygoogle || []).push({});
    package com.argon.utility;

import com.argon.player.Client;
import com.sun.media.jfxmedia.logging.Logger;
import java.util.Arrays;

/**
*
* @author Fuzen Seth
*/
public class Ironman {

/** Enum Mode
Represents the iron man modes that are active,
integer id : represents the mode's id.
integer experience : represents the mode's base experience. */
public enum Mode {
NORMAL(1, 50), HARD(2, 25), HARDCORE(3, 5);

//Mode id, experience modifier
private final int id, experience;

private Mode(int id, int experience) {
this.id = id;
this.experience = experience;
}

public int getId() { return id; }

public int getExperience() { return experience; }

}

/** Experience for iron man.
* [MENTION=75098]Para[/MENTION]m object player : player class
* [MENTION=75098]Para[/MENTION]m int skill : skill id
* [MENTION=75098]Para[/MENTION]m int exp : skill experience */
public static final boolean getTotalExperience(Client player, int skill, int experience) {
return player.getPlayerAssistant().addSkillXP(skill, experience * player.getMode().getExperience());
}

public static boolean isIronMan(Client p) {
if (p.getMode().getId() > 0)
return true;
else
return false;
}

public static void setIronMan(Client player, Mode mode) {
player.ironMan = mode.getId();
player.sendMessage("Your mode has been set to "+mode.toString().toLowerCase()+".");
}
}



Client class:
    
private Mode mode;


    public Mode getMode() {
return mode;
}
(adsbygoogle = window.adsbygoogle || []).push({});
03-09-2015, 02:13 AM #2
One
At least I can fight
why not just make one script thread, seeing as you're just copying and pasting it
03-09-2015, 02:22 AM #3
Stunz
Former Staff
Originally posted by One View Post
why not just make one script thread, seeing as you're just copying and pasting it
Copy and pasting? Ok if you say so, lmfao. Stop being a hater 24/7 pls.
03-09-2015, 02:26 AM #4
One
At least I can fight
Originally posted by Stunz View Post
Copy and pasting? Ok if you say so, lmfao. Stop being a hater 24/7 pls.

you're claiming you wrote this?? lmao I can link the original thread and coder if you like
03-09-2015, 02:30 AM #5
Stunz
Former Staff
Originally posted by One View Post
you're claiming you wrote this?? lmao I can link the original thread and coder if you like
It's all from within my source (Which I Released).

Every guide which I posted is in my source.
03-09-2015, 02:33 AM #6
One
At least I can fight
Originally posted by Stunz View Post
It's all from within my source (Which I Released).

Every guide which I posted is in my source.

so your source is just c/p from others scripts? like it even still has a comment saying the authors name it in.....

and why release code without explaining it all, just leads more people to c/p like you

people with bad habits teaching others
03-09-2015, 02:35 AM #7
Stunz
Former Staff
Originally posted by One View Post
so your source is just c/p from others scripts? like it even still has a comment saying the authors name it in.....

and why release code without explaining it all, just leads more people to c/p like you

people with bad habits teaching others
I didn't say every guide was created by me. You even said i'm a leech. You're a retard Facepalm.

Copyright © 2026, NextGenUpdate.
All Rights Reserved.

Gray NextGenUpdate Logo