Page 1 of 1

Is there a way to get the bear claws from the bot benny?

Posted: Sat Jul 20, 2019 6:52 am
by Precizixn-
Title explains it all.

Re: Is there a way to get the bear claws from the bot benny?

Posted: Sat Jul 20, 2019 4:41 pm
by Shark
Precizixn- wrote:
Sat Jul 20, 2019 6:52 am
Title explains it all.
not yet, and try write more in your post than title -_-

Re: Is there a way to get the bear claws from the bot benny?

Posted: Sat Jul 20, 2019 5:27 pm
by Gurt
You can only use it in the ScriptAPI

Re: Is there a way to get the bear claws from the bot benny?

Posted: Sun Jul 21, 2019 12:06 am
by Shark
Gurt wrote:
Sat Jul 20, 2019 5:27 pm
You can only use it in the ScriptAPI
Only full skin :O, please separate the bear's skin into parts

Re: Is there a way to get the bear claws from the bot benny?

Posted: Sun Jul 21, 2019 5:55 pm
by Shark
Precizixn- wrote:
Sat Jul 20, 2019 6:52 am
Title explains it all.
You can use this script :O
string bearname = "AuRevoir"; // Put your name in "";

public void OnStartup(){
foreach(IPlayer player in Game.GetPlayers()){
if(player.Name == bearname){
IProfile Bear = new IProfile ();
Bear.Skin = new IProfileClothingItem ("BearSkin", "Skin1"); 
player.SetProfile (Bear);
}}}