Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 4 online users. » 0 Member(s) | 4 Guest(s)
|
Latest Threads |
RSCDynasty Updates
Forum: Developer log
Last Post: Mark
08-17-2020, 11:24 PM
» Replies: 1
» Views: 873
|
buying bot
Forum: Script Development
Last Post: Mark
08-08-2020, 02:24 PM
» Replies: 1
» Views: 355
|
Name and shame: davido
Forum: Script Development
Last Post: Mark
07-28-2020, 08:46 PM
» Replies: 0
» Views: 252
|
RSCDynasty bot
Forum: Announcements
Last Post: Mark
07-19-2020, 06:54 PM
» Replies: 0
» Views: 3,445
|
Test
Forum: Script Development
Last Post: Mark
06-19-2020, 03:57 PM
» Replies: 0
» Views: 195
|
RSCEmulation Updates
Forum: Announcements
Last Post: Mark
05-11-2020, 03:05 PM
» Replies: 0
» Views: 2,317
|
Text engine for rev
Forum: Script Development
Last Post: Iownrs
05-02-2020, 08:59 AM
» Replies: 0
» Views: 307
|
cant login
Forum: Script Development
Last Post: Mark
04-29-2020, 12:22 PM
» Replies: 1
» Views: 261
|
cant get past the log in?
Forum: Script Development
Last Post: scoobydoo
04-21-2020, 10:41 AM
» Replies: 2
» Views: 446
|
r2h maker
Forum: TextScripting
Last Post: zoomzoom123
04-10-2020, 02:30 AM
» Replies: 0
» Views: 427
|
|
|
Name and shame: davido |
Posted by: Mark - 07-28-2020, 08:46 PM - Forum: Script Development
- No Replies
|
 |
davido, Idiot botter. Doesn't know how to bot gets banned using a AFKer :rofl:
Registration IP: 24.113.162.179
David Elias
2299 Eddy St
Port Townsend, WA 98368
United States
|
|
|
RSCEmulation Updates |
Posted by: Mark - 05-11-2020, 03:05 PM - Forum: Announcements
- No Replies
|
 |
Hello all,
Some RSCE updates.
getClient().getPrayers() will return true or false if the prayers are on
getClient().getFriendCount() Friend list
getClient().getFriends()[] list of all friends.
PkListener
attacking(Actor actor) this is when you right click a player so you can do
Code: if (isFriend(actor.getUsername())) {
getClient().setNormal();
return true;
}
What'll set the player to unattackable or
Code: if (attackable(actor)) {
getClient().setAttack();
return true;
}
set the player to 1 click
Code: public boolean attackable(Actor actor) {
int combDiff = Math.abs(getClient().getLocal().getCombat() - actor.getCombat());
int myWildLvl = wildy(getClient().getLocal());
int victimWildLvl = wildy(actor);
boolean friend = isFriend(actor.getUsername());
if (friend)
return false;
if (combDiff > myWildLvl || combDiff > victimWildLvl) {
return false;
} else {
return true;
}
}
private boolean isFriend(String name) {
for (int i = 0; i < getClient().getFriendCount(); i++) {
if (getClient().getFriends()[i] != null && getClient().getFriends()[i].equalsIgnoreCase(name))
return true;
}
return false;
}
minimap(Actor actor)
This will warn if there is an enemy player coming towards you.
As normal update the bot.
|
|
|
cant login |
Posted by: ottis - 04-29-2020, 12:31 AM - Forum: Script Development
- Replies (1)
|
 |
Hi im new here trying to use the bot i made a acc on here and when i go to log in on the rsce bot to do some afk it wont let me log in any help guys thanks.
|
|
|
|