Everything posted by osrs_pvm
-
Giving a bot membership
Hello everyone, just curious to see how people give their bots membership? I have a main that is worth A LOT(money is no issue at all, im just worried about risk) and I do not want to trade a bond to one of my bots then get hit with a macro major on my main as well. At the same time I don't want to throw money into the game to buy the membership with real cash. So how do you guys do it? I want to start scripting p2p
-
Explv's Scripting 101
Best guide, when''s gui update? D:
-
VPN/Proxy question
Hello, so i have been trying to use the built in proxy in the client and normally it crashes the client, or it takes 100 years to load and it never actually fully loads.(I've tried 20 different hostnames). So my next plan was to use a vpn, a vpn works, problem is I can't do a lot of other things on my pc while testing(aka like be in discord programming with others). I want to test my scripts while still being in discord so a vpn is not an option. The reason why I don't want to bot on my regular IP is that I have a max account worth well over $1000 I don't want to risk. I am not botting at the same time I am playing on my main, but it would be on the same main pc and same IP, could that turn into an issue?
-
Broken code?
Figured it out, I thought you had to create a player object for your player; i just called myPlayer() and checked to see if it was animating. This way works just fine, thanks
- Broken code?
-
Broken code?
Also removing == did not change anything(didn't think it would, thanks for simplifying tho)
-
Broken code?
when it creates an object and fishes, it is in the onLoop(); the is.visable is there to check to make sure it is fishing still, and if it is, keep checking my inv and bank if i need too, if the spot doesnt exist/!exist()/!isVisable() to leave the checking loop; relabel a new object; fish again; go into checker
-
Broken code?
Because i still can't figure out how to create a myplayer object and I will do the null later dw Ah, I will try without the ==; and I have been using the debug(it is a life saver)
-
Broken code?
But I can still fish and interact with it? code works to the loop, but never leaves edit: maybe I am thinking of it wrong; I think of npc as any alive object, anything that is dynamic(which include fishing spots) and RS2Objects as stationary objects likes trees/doors/ect
-
Broken code?
Please can someone explain why this works NPC goblin = getNpcs().closest("Goblin"); goblin.interact("Attack"); while(goblin.exists() == true) { but this doesn't: NPC spot = getNpcs().closest("Fishing spot"); spot.interact("Net"); while(spot.exists() == true) { (I also tried with isVisable()) I can't figure out how to figure out the player animation id so i am checking to see if the spot exists before fishing again, thing is it never leaves the loop
-
A Beginners Guide to Writing OSBot Scripts (where to get started!) by Apaec
Thanks for the guide, this will probably be me