Jump to content

investmentideas

Members
  • Posts

    52
  • Joined

  • Last visited

  • Feedback

    100%

Posts posted by investmentideas

  1. Hi, I have quit OSRS and dont want my account anymore. Was wondering how much I could get for it and how I could sell it?

    Has ALL Prayers unlocked.

    Has done MM2 but NOT RFD.

    Has Firecape and some other untradeables.

    Thanks in advance for letting me know how i can sell this

    osrs stat.PNG

    osrs pray.PNG

    quests.PNG

    osrs untrade.PNG

    osrs bank.PNG

  2. I have the below account with 0 quests completed. I need someone to get 5 quests that are appropriate for AFK training in NMZ. Please can you quote how much it would cost and any extra costs for things such as skills. Can pay now to get it started.

     

     

    Stats.PNG

  3. 6 minutes ago, dragonite3000 said:

    it's a starter zerk and has 83 construction. 50 attack 74 strength 84 ranged 40 def and 81 magic 72 hp. you can turn it into a range tank.

    75M ( has a ban ) which is why I said 75M.

    sorry cant take anything with a ban already

  4. 11 hours ago, Drewyboyo said:

    trying to drop a starter acc that has 70s + right next to b gloves, just need to cannon the range up and defense to your choosing , like the afk training

    but the quest grind for most part is done

    lf 40$ / 60m and id sell tn

    whats ur disc?

  5. On 8/2/2019 at 7:50 PM, Dbuffed said:

    Partly sounds right, although I didn't really think too much into it.

    I had a user send me UKBT and somehow he recovered it. There had been PayPal payments before that, which were fine and instead this one payment caused so many problems. They took the money he sent me + the same in fees to me, then froze my money until I mentioned going down other routes, had their fraud team talk to me on the phone and instructed them not to release my money in my accounts and to cut my card in front of me. 

    If they have taken money out without your say so or at the request of the person who sent the money, and it didn't get resolved then consider getting a small claims court or solicitor involved. You can do it yourself by raising a complaint and then going to the financial ombudsmen, something banks tend to panic at. If they freeze your accounts then its likely to be down to fraud, the only reason behind that is the person who sent the money has said he didn't send it, but they would have to investigate it first before doing anything. Seems fishy and sound like you can get some decent money from the bank.

  6. On 7/18/2019 at 6:41 PM, Dbuffed said:

    You should ask Nationwide about this then, they have closed a bank account based on the same information.

    They hold the legal right to close an account, but they have to give reasonable notice, usually 30 days for you to find new banking arrangements. If they freeze it, it's likely because they believe something fraudulent is occurring. However they are still legally not allowed to remove funds from your personal account at the request of someone else, only you can give permission. If anything occurs outside of your permission you can take them to court and sue them for a good amount, they will also get fined by regulators. Speaking from experience, most people never give consent for a third party to take money from a personal account, whether the payment was sent intentionally or unintentionally.

  7. On 7/3/2019 at 7:57 PM, Dbuffed said:

    Whilst with PayPal, chat logs/screenshots/invoices/email receipts work a wonder, as for card/bank all you have to do is ring up and claim you didn't authorise the payment and they by law have to look into it and try resolve it for you.

    For those interested:

    A bank can look into it but it does not mean they are guaranteed to get the money back. For example:

    If someone sent me £1,000 to my bank account in the UK. I can keep it until a formal request comes through. That £1,000 is now legally mine and cannot be taken out of my bank account. If the person who sent it to me wants the money back, they have to get my approval. If I do not give them my approval then the person who sent the money to me needs to try and get the money back through a solicitor/lawyer. 

    It is illegal for a bank (in the UK) to take money out of your account at the request of someone else, even if they sent it. The main take away from this: Always use bank account transfers or a middleman over paypal!

  8. I need accounts that have a combat level of 19-22. I do not care about the other skills, i just need the combat level. You will need to create the account and level it up yourself, however you decide to do that.

    Please comment with the level and price at which you can do.

  9. 11 minutes ago, Lordsthan said:

    It really depends on what you are doing. If it's an InteractionEvent, then you can also disable on it.

    I dont believe its an interaction event, its just a simple move from point a to point b. the number of tiles between the two points is 5 at most.. but it rotates the camera when at point a to get to point b, vice versa.

    I dont know why it even moves the camera considering it is so close to each other.

  10. 55 minutes ago, Lordsthan said:

    WebWalkEvent.setMoveCameraDuringWalking(boolean)

    I tried to test the following but it still moved the camera before the walking even began. Is it possible to stop just before the walk event begins

  11. I would like to disable the camera movement when my script walks (webwalk or walkingevent). I did see that people used interaction events, I dont think this would work? Is there a way to disable camera for the walk and then re-enable it after walk is complete?

  12. 8 minutes ago, Token said:

    It only works in combat, the value is cached. If no value has been cached yet, it should return 100. Use skills#getDynamic & skills#getStatic to compute your own health percent.

    didnt know, thanks for that! I changed to use static and dynamic, works like a treat, might not be the cleanest but works:

     

    private int getHpPercent() {
        int staticHp = getSkills().getStatic(Skill.HITPOINTS);
        int dynamicHp = getSkills().getDynamic(Skill.HITPOINTS);
        int hpPercent = 100 * (dynamicHp / staticHp);
        return hpPercent;
    }
    
    public void eat() throws InterruptedException {
        int hpThreshold = 100;
        log("Checking Health");
        if (getHpPercent() < hpThreshold){
            log("Health is not 100%");
            if (getInventory().contains("Shark")){
                log("Eating Shark");
                getInventory().interact("Eat", "Shark");
                new ConditionalSleep(1000, 100) {
                    @Override
                    public boolean condition() throws InterruptedException {
                        return (myPlayer().getHealthPercent() == 100);
                    }
                }.sleep();
            } else {
                if (getInventory().contains("Varrock teleport")){
                    log("Teleporting to Varrock");
                    getInventory().interact("Break", "Varrock teleport");
                    new ConditionalSleep(1000, 100) {
                        @Override
                        public boolean condition() throws InterruptedException {
                            return (!getCombat().isFighting());
                        }
                    }.sleep();
                }
            }
        }
    }
    • Boge 1
×
×
  • Create New...