Download
(1MB)
Download
Updated: 05-02-17 01:09 PM
Pictures
File Info
Compatibility:
Tomb of Sargeras (7.2.0)
Return to Karazhan (7.1.5)
Legion (7.0.3)
Updated:05-02-17 01:09 PM
Created:unknown
Downloads:37,187
Favorites:132
MD5:

iSquidMod  Popular! (More than 5000 hits)

Version: 2.56
by: Imithat, ganders




// Intro
Sick of that stupid griffon on the sides of the main menu bar?
Wouldn't you rather have a cool looking octupus, murloc or Diablo 3 art in it's place instead?
Well, look no further cause the iSquidMod is here!
Type /squid ingame for a full list (for example /squid diablo1_roth)


// Squids
➎➑




Check iSquidMod at Curse.com


v.2.56
+ Fix a Bug
+ Updated TOC
+ Name Changed

v.2.54
+ Update the TOC to 60200 (6.2)

v.2.53
+ Update the TOC to 60100 (6.1)

v.2.52
+ Add /squid axecrest
+ Add /squid crusadercrest

v.2.51
+ WoW Patch 6.0.2 ready!

v.2.50
+ Added crest - request
+ Added magecrest2 - request
+ Added diablo3crest - request
+ Added undeadcrest - request

v.2.49
+ Added ShamanCrest2 - request

v.2.48
+ Add 6 new grafics! Minipets from patch 5.4
+ Fix Yu'lon

v.2.47
+ Add 4 new grafics! Xuen, Yu'lon, Niuzao and a Diablo UI additional

v.2.46
+ Add 7 new grafics!

v.2.44
+ Fix 3 grafics (druidbear, murloc, allianzcrest).

v.2.44
+ Add 9 new grafics!

v.2.43
- Remove the old grafics
+ Add 19 new grafics!
+ Update toc

v.2.41
+ Update toc

v2.4
+ Add new Diablo III angel and demon grafic from Roth (http://www.wowinterface.com/downloads/info9175-RothUI.html)
+ Add Kil'Jaeden grafic (in crap version sorry ^_^)
+ Add Deathknight2 grafic

v2.3
+ Update the TOC to 30000
Post A Reply Comment Options
Unread 09-01-20, 06:42 AM  
Deadlyz
A Wyrmkin Dreamwalker
 
Deadlyz's Avatar
AddOn Author - Click to view AddOns

Forum posts: 55
File comments: 370
Uploads: 2
Hello!

Will this addon work with custom UIs like LS UI?

I'd like to add some artwork to my action bar.
__________________

My last movie: Rogue Sweethearts
Last edited by Deadlyz : 09-01-20 at 06:42 AM.
Report comment to moderator  
Reply With Quote
Unread 10-31-19, 03:25 PM  
Golesh
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Originally Posted by _p4ge
What's wrong? Every right graphic is facing the wrong direction:

https://ibb.co/bPJyTXB

Yes, i changed the code mentioned below. Thanks in advance.
You need to change this:
MainMenuBarArtFrame.RightEndCap:SetTexCoord(0, 1, 0.35, 1)

To this:
MainMenuBarArtFrame.RightEndCap:SetTexCoord(1, 0, 0.35, 1)
Report comment to moderator  
Reply With Quote
Unread 09-29-19, 04:05 AM  
_p4ge
A Kobold Labourer
 
_p4ge's Avatar

Forum posts: 0
File comments: 18
Uploads: 0
What's wrong? Every right graphic is facing the wrong direction:

https://ibb.co/bPJyTXB

Yes, i changed the code mentioned below. Thanks in advance.
Report comment to moderator  
Reply With Quote
Unread 12-03-18, 03:06 AM  
Vindica
A Kobold Labourer
 
Vindica's Avatar

Forum posts: 0
File comments: 10
Uploads: 0
Thanks!

Originally Posted by salurano
For BfA, replace in iSquidMod.lua :

Lua Code:
  1. function iSquidMod:Update(toggle)
  2.     if ( toggle == 1 ) then
  3.         MainMenuBarLeftEndCap:Hide()
  4.         MainMenuBarRightEndCap:Hide()
  5.     elseif ( toggle == 29 ) then
  6.         MainMenuBarLeftEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\emblemLeft.tga")
  7.         MainMenuBarRightEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\emblemRight.tga")
  8.         MainMenuBarLeftEndCap:Show()
  9.         MainMenuBarRightEndCap:Show()
  10.     else
  11.         MainMenuBarLeftEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\"..textures[toggle]..".tga")
  12.         MainMenuBarRightEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\"..textures[toggle]..".tga")
  13.         MainMenuBarLeftEndCap:Show()
  14.         MainMenuBarRightEndCap:Show()
  15.     end
  16.     iSquidModDB = toggle
  17. end

new:

Lua Code:
  1. function iSquidMod:Update(toggle)
  2.     if ( toggle == 1 ) then
  3.         MainMenuBarArtFrame.LeftEndCap:Hide()
  4.         MainMenuBarArtFrame.RightEndCap:Hide()
  5.     elseif ( toggle == 29 ) then
  6.         MainMenuBarArtFrame.LeftEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\emblemLeft.tga")
  7.         MainMenuBarArtFrame.RightEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\emblemRight.tga")
  8.         MainMenuBarArtFrame.LeftEndCap:Show()
  9.         MainMenuBarArtFrame.RightEndCap:Show()
  10.     else
  11.         MainMenuBarArtFrame.LeftEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\"..textures[toggle]..".tga")
  12.         MainMenuBarArtFrame.RightEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\"..textures[toggle]..".tga")
  13.         MainMenuBarArtFrame.LeftEndCap:SetTexCoord(0, 1, 0.35, 1)
  14.         MainMenuBarArtFrame.RightEndCap:SetTexCoord(0, 1, 0.35, 1)
  15.         MainMenuBarArtFrame.LeftEndCap:Show()
  16.         MainMenuBarArtFrame.RightEndCap:Show()
  17.     end
  18.     iSquidModDB = toggle
  19. end
Omg thank you so much! Works great!
Report comment to moderator  
Reply With Quote
Unread 11-05-18, 05:17 AM  
salurano
A Kobold Labourer
AddOn Author - Click to view AddOns

Forum posts: 0
File comments: 1
Uploads: 1
For BfA, replace in iSquidMod.lua :

Lua Code:
  1. function iSquidMod:Update(toggle)
  2.     if ( toggle == 1 ) then
  3.         MainMenuBarLeftEndCap:Hide()
  4.         MainMenuBarRightEndCap:Hide()
  5.     elseif ( toggle == 29 ) then
  6.         MainMenuBarLeftEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\emblemLeft.tga")
  7.         MainMenuBarRightEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\emblemRight.tga")
  8.         MainMenuBarLeftEndCap:Show()
  9.         MainMenuBarRightEndCap:Show()
  10.     else
  11.         MainMenuBarLeftEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\"..textures[toggle]..".tga")
  12.         MainMenuBarRightEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\"..textures[toggle]..".tga")
  13.         MainMenuBarLeftEndCap:Show()
  14.         MainMenuBarRightEndCap:Show()
  15.     end
  16.     iSquidModDB = toggle
  17. end

new:

Lua Code:
  1. function iSquidMod:Update(toggle)
  2.     if ( toggle == 1 ) then
  3.         MainMenuBarArtFrame.LeftEndCap:Hide()
  4.         MainMenuBarArtFrame.RightEndCap:Hide()
  5.     elseif ( toggle == 29 ) then
  6.         MainMenuBarArtFrame.LeftEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\emblemLeft.tga")
  7.         MainMenuBarArtFrame.RightEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\emblemRight.tga")
  8.         MainMenuBarArtFrame.LeftEndCap:Show()
  9.         MainMenuBarArtFrame.RightEndCap:Show()
  10.     else
  11.         MainMenuBarArtFrame.LeftEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\"..textures[toggle]..".tga")
  12.         MainMenuBarArtFrame.RightEndCap:SetTexture("Interface\\AddOns\\iSquidMod\\skin\\"..textures[toggle]..".tga")
  13.         MainMenuBarArtFrame.LeftEndCap:SetTexCoord(0, 1, 0.35, 1)
  14.         MainMenuBarArtFrame.RightEndCap:SetTexCoord(0, 1, 0.35, 1)
  15.         MainMenuBarArtFrame.LeftEndCap:Show()
  16.         MainMenuBarArtFrame.RightEndCap:Show()
  17.     end
  18.     iSquidModDB = toggle
  19. end
Report comment to moderator  
Reply With Quote
Unread 09-10-18, 01:01 PM  
Vindica
A Kobold Labourer
 
Vindica's Avatar

Forum posts: 0
File comments: 10
Uploads: 0
Re: Update for BFA

Originally Posted by bldvx
Hello,

Any update or alternative for BFA?
I second that, I really miss this addon. It was small but added such great flavor to the UI. Anyone have any idea how to fix it?
Report comment to moderator  
Reply With Quote
Unread 07-26-18, 04:03 AM  
bldvx
A Kobold Labourer

Forum posts: 0
File comments: 4
Uploads: 0
Update for BFA

Hello,

Any update or alternative for BFA?
Report comment to moderator  
Reply With Quote
Unread 07-07-16, 10:47 AM  
Horotu
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Hello! Thanks for addon im using it since MoP.
Are SquidMod is ready for prepatch of Legion or new addon?
Report comment to moderator  
Reply With Quote
Unread 03-25-15, 08:34 AM  
devilArt
A Wyrmkin Dreamwalker
AddOn Author - Click to view AddOns

Forum posts: 51
File comments: 203
Uploads: 2
really thanks, it looks fantastic now
Report comment to moderator  
Reply With Quote
Unread 03-23-15, 02:00 PM  
Imithat
A Fallenroot Satyr
 
Imithat's Avatar
AddOn Author - Click to view AddOns

Forum posts: 27
File comments: 201
Uploads: 7
Hi,

Use /squid orbdaemon

with kgPanels add the daemon & angel (choose your personal size)
grafics are in rMedia ->
Interface\\AddOns\\kgImages\\d3_demon3
and
Interface\\AddOns\\kgImages\\d3_angel2

move the Orbs: go to Interface\\AddOns\\oUF_Diablo\\config.lua
scroll down to frame movement and change cfg.framesLocked = true to cfg.framesLocked = false

delete the ouf_diablo grafics.
Go to Interface\\AddOns\\oUF_Diablo\\units\\player.lua
copy all this in your player.lua -> click me
Last edited by Imithat : 03-23-15 at 02:16 PM.
Report comment to moderator  
Reply With Quote
Unread 03-20-15, 01:46 PM  
devilArt
A Wyrmkin Dreamwalker
AddOn Author - Click to view AddOns

Forum posts: 51
File comments: 203
Uploads: 2
hi imithat
how can I get the layout like your screenshot?


I downloaded nmainbar rmedia and ouf_diablo, but seems still missing some material?
Report comment to moderator  
Reply With Quote
Unread 10-24-14, 04:11 AM  
Botouls
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
I was looking for a way to make SquidMod work with Bartender4 BlizzardArt. Came across my old friend SquidFrame which is able to overlap Bartender4's options and change the griffins to whatever I want. Sadly SquidFrame is outdated and cause a ton of LUA errors pop up right on my face
Now I'm thinking, if SquidFrame uses SquidMod to change Blizzard's default art, how can it change Bartender4's BlizzardArt and SquidMod don't, what's the trick? Is there a way to make SquidMod work with Bartender4?
I'd really like to see it happens, if anyone could point me out the directions I'd be very glad (I can code a bit but have no idea how wow addons work).
Thanks in advance!
Sorry for my terrible english ><
Report comment to moderator  
Reply With Quote
Unread 10-20-14, 02:27 PM  
Imithat
A Fallenroot Satyr
 
Imithat's Avatar
AddOn Author - Click to view AddOns

Forum posts: 27
File comments: 201
Uploads: 7
Originally Posted by Saintvallen
Is it possible for you to tell me where you got the class crests as .TGA? I was looking for these to use in a new addon and I saw your addon had them - are you able to help me out with this? The ones in your addon package are missing a bit at the bottom.
Class crests are easy to find via google image search
4 example search about "wow mage crest png" or "wow mage crest tga"

@Horotu: Added on the next update
Last edited by Imithat : 10-20-14 at 02:30 PM.
Report comment to moderator  
Reply With Quote
Unread 10-20-14, 11:24 AM  
Horotu
A Kobold Labourer

Forum posts: 0
File comments: 40
Uploads: 0
Hi Imithat!
I find some new crests, can u add them to squidmod?

http://img1.meristation.com/files/im...inal5_flat.jpg
http://indiablo.ru/photo/2-0-431-3
Last edited by Horotu : 10-20-14 at 11:25 AM.
Report comment to moderator  
Reply With Quote
Unread 10-19-14, 04:45 PM  
Saintvallen
An Aku'mai Servant

Forum posts: 33
File comments: 141
Uploads: 0
Is it possible for you to tell me where you got the class crests as .TGA? I was looking for these to use in a new addon and I saw your addon had them - are you able to help me out with this? The ones in your addon package are missing a bit at the bottom.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: