-
Activity
-
-
0
DDoS Protections (GAME + WEBSITE)
Provides great services, the best in firewall programming, want to have your server fully protected this is the right guy! -
1
-
3
fix Level Update Fix [REVERSED]
We need new reaction smile specially for Mali topics, something like *CUMPERMANENTI think you are one of the best m2 designers, lets do it=) -
3
[Dumb question] what player_index pids (pid1, pid2, pid3, pid4, pid5) are actually for? 🥶
Thank you guys it is so obvious now! -
-
3
[Dumb question] what player_index pids (pid1, pid2, pid3, pid4, pid5) are actually for? 🥶
They are exactly it, the player ids of that account.- 1
-
-
3
[Dumb question] what player_index pids (pid1, pid2, pid3, pid4, pid5) are actually for? 🥶
At this point I'm afraid to ask, but here I go. PLAYER_INDEX DATABASE ID stands for the id of the account and this is clear to me EMPIRE stands for the kingdom of the account clearly with shinsoo = 1, jinno = 3 etc What about those pids? They are almost probably associated to each player character per account, but still I don't really get what the values refer to, all information I looked for seemed confusing and non exaustive; If someone could point me to something I'll be glad to get deeper into the undestanding of this Keep up the good work, cheers Macro -
0
Atlas/minimap not working.
Hi, im try recreate C1 / A1 and B1 map like ice(snow) / fire / desert maps, but when i recreate this map and i save atlas/minimap i got only old map. Just like this.
-
-
Recently Browsing
- No registered users viewing this page.
Question
kodepiko 37
Hello,
I'm trying to add MouseIn tooltip to ImageBox at uiRefine.py
(I want hover tooltip with item description on refine materials icon for ex. red pearl etc)
I try this code at AppendMaterial()
itemImage = self.__MakeItemImage()
itemImage.SetParent(slot)
item.SelectItem(vnum)
itemImage.LoadImage(item.GetIconImageFileName())
# self.itemImage = itemImage # this is defined somewhere else
self.itemImage.OnMouseOverIn(self.ShowTip())
self.itemImage.OnMouseOverOut(self.HideTip())
I init tooltip at def Open():
but get syserr:
When I do self.itemImage.OnMouseOverIn = self.ShowTip()
syserr is clear but there's no tooltip, so I think it's bad use of this function
My defs:
Anyone know how to do this?
Greetings.
Link to comment
Share on other sites
Top Posters For This Question
7
2
2
2
Popular Days
May 29
14
May 30
1
Top Posters For This Question
kodepiko 7 posts
PACI 2 posts
Shang 2 posts
metin2-factory 2 posts
Popular Days
May 29 2016
14 posts
May 30 2016
1 post
Popular Posts
PACI
OnMouseOverIn() and OnMouseOverOut() are the called to run the MouseEvent functions, you can't use them to set a mouse event. You better use: self.itemImage.SAFE_SetStringEvent("MOUSE_OVER_IN
metin2-factory
Well,if you copied paste what PACI wrote of course it wouldn't work. Modify it to match your functions.. self.itemImage.SAFE_SetStringEvent("MOUSE_OVER_IN", self.ShowTip) self.itemImage.SAFE_
Shang
self.itemImage.OnMouseOverIn(self.ShowTip)self.itemImage.OnMouseOverOut(self.HideTip)
14 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now