Jump to content

Logo


LetMeHolla

Recommended Posts

Call this in your onStart() (only needs to be set one time)

private BufferedImage img = null;
private void setBuffImage(){
try {
img = ImageIO.read(new URL("URL TO IMAGE"));
} catch (IOException e) { } }

Then, inside your onPaint():

if(img != null) g.drawImage(img, 0, 335, null);
Edited by Zappster
  • Like 1
Link to comment
Share on other sites

or in scriptmanifest(logo = "imgurlink")

I have tried it will only show up when i click on the script

 

 

Call this in your onStart() (only needs to be set one time)

private BufferedImage img = null;
private void setBuffImage(){
try {
img = ImageIO.read(new URL("URL TO IMAGE"));
} catch (IOException e) { } }

Then, inside your onPaint():

if(img != null) g.drawImage(img, 0, 335, null);

Ty bro :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...