Everything posted by GiimpeN
-
Sell twitch views
Not gonna spoil how I do it, If you want the service then say it here or pm
-
Selling Traffic!
Yes I do twitch views read my topic in my signature
- Selling Traffic!
-
Selling Traffic!
Around 10k per day can i delivery
-
Selling Traffic!
Sorry man its not safe for adSense. And its not 100% unique.
-
Selling Traffic!
Hey guys im selling traffic to anything of your choice like website, youtube video you name it. I can offer a really good price pm me or post here if your interested. Greetings GiimpeN
-
Sell twitch views
It's a service I delivery for everyone who need help with boost their twitch channel
-
Sell twitch views
I got a private method, So not gonna tell.
-
Is it possible...
Yes it is possible I have done it, and its manny guides on Youtube how to make it
-
Sell twitch views
Just twitch views atm sorry.
-
Sell twitch views
I can handle more then 200 views so its no problem.
-
Sell twitch views
If your interested we can take prices over skype. And you have the views for so long you want have them. And the last question I don't understand, but I didnt sell to him.
-
Sell twitch views
No why would it? I use it on my own stream every time. And been doing it for long time now.
-
Sell twitch views
Could i preview it? Yea ofc, Just sent you an pm.
-
Sell twitch views
If you guys want to test it before buying the service its fine.
-
Sell twitch views
But when you have more viewers, you will get more real viewers too, as more people will see your stream.. Exactly!
-
Sell twitch views
Hey everyone I can offer service for fake twitch live viewers if your interested in this post here. If you guys want to test it before buying the service its fine. Vouches:
-
Help with player lvls
Yea it would be fine but im new to java so idk how to add that would you like to help?
-
Help with player lvls
Already did that, and could not find any usefull, and im now to java btw
-
Help with player lvls
Hey every one, I need to know the lvls of a player how do I do that. Like se hes hp and str etc. (Not my own lvls, the enemy in pk)
-
My first java project (Rock Crab killer)
Thx man, It make it clear now when you sad it but couldnt get is self But thx really much. And btw is there anyhting other stupid with my code or is it okey for be my first?
-
My first java project (Rock Crab killer)
Hi I got some problem with my script and i don't know whats wrong I got it to work for aggro the rockcrabs (wake them up) then when im trying to add an attack method its not working please help me. And im really nooby on java as i sad my first real project. package killer; import java.awt.Graphics; import org.osbot.script.Script; import org.osbot.script.ScriptManifest; import org.osbot.script.rs2.model.Entity; import org.osbot.script.rs2.model.Player; @ScriptManifest(author = "GiimpeN", info = "Kills RockCrabs", name = "CrabKiller", version = 0.1) public class CrabKiller extends Script { public void onStart() { log("Script Started."); } public void onExit() { } public int onLoop() throws InterruptedException { Player player = client.getMyPlayer(); Entity Rocks = closestNPC(73, 71); if (Rocks != null) { if (!Rocks.isVisible()) { client.moveCameraToEntity(Rocks); if (!player.isMoving()) { if (!player.isAnimating()) { Rocks.interact("Walk here"); sleep(random(700, 800)); } } } } return 50; } public int onLoop1() throws InterruptedException { Entity rockcrab = closestAttackableNPCForName("Rock Crab"); Player player = client.getMyPlayer(); if (player.isUnderAttack()) { rockcrab.interact("Attack"); if (!rockcrab.isVisible()) { client.moveCameraToEntity(rockcrab); } } return 50; } public void onPaint(Graphics g) { } }