-
Content Count
42 -
Joined
-
Last visited
-
Days Won
2
Owsap last won the day on October 18
Owsap had the most liked content!
Community Reputation
53 ExcellentAbout Owsap
-
Rank
Neutral
- Birthday 09/02/1997
Profile Information
-
Gender
Male
-
Location
Macaronesia
Contact Methods
-
Website URL
https://owsap-productions.com/
-
Discord
Owsap#5431
-
Skype
owsap.
Recent Profile Visitors
992 profile views
-
Vlad Ionut started following Owsap
-
You can get a VPS SSD for as low as 2.5€, just search the web and you don't have to worry about anything else. A home laptop is not meant to be a home server but to answer your question you can use Microsoft Loopback Adapter of even Hamachi to setup a public connection and together allowing these connections in your Firewall, note that port forwarding is necessary on your router aswell, after all this is configured just use your public IP address to access your server and client.
-
- 59 replies
-
- 3
-
-
-
- programming
- meme
-
(and 1 more)
Tagged with:
-
Which system are you talking about?
-
solved WINDOWS_IGNORE_PACKING_MISMATCH
Owsap replied to Dutschke's question in Questions and Answers
You can also switch to SDK 10.0.16299.0 -
@ interfaceModule.py ''' 1. ''' # Search self.wndCharacter = uiCharacter.CharacterWindow() # Add below self.wndCharacter.BindInterface(self) @ uiCharacter.py ''' 1. ''' # Search @ def __init__(self): ui.ScriptWindow.__init__(self) # Add below self.interface = None ''' 2. ''' # Search def Show(self): self.__LoadWindow() # Add above def BindInterface(self, interface): from _weakref import proxy self.interface = proxy(interface) ''' 3. ''' # Search def Show(self): self.__LoadWindow() # Add below if self.interface: self.interface.HideAllQuestButton() ''' 4. ''' # Search def Close(self): if 0 != self.toolTipSkill: self.toolTipSkill.Hide() # Add below if self.interface: self.interface.HideAllQuestButton() Not sure if this is what you really want but it will hide quest scrolls when opening the character window and show them again once closed.
-
Cool, I really liked that design, the gears give a very nice touch to it! Keep up the good work!
-
You must add the value 1 to OnClick column of your shop NPC in mob_proto. Example:
-
Owsap changed their profile photo
-
First of all I know this is kind useless but for the sake of enabling and disabling the flash effect in buttons I decided to use the standard flash function because I didn't know an easier way. As for an example, here is a demonstration of the flash effect.
-
https://i.imgur.com/npQXtmX.mp4
- 59 replies
-
- 1
-
-
- programming
- meme
-
(and 1 more)
Tagged with:
-
Nice work, reupload?
-
Nice work looks awesome
-
-
[Fix] Item refinement crash with same material (Pendant refinement)
Owsap replied to Owsap's topic in Guides & HowTo
It works the same but your way is cleaner, i just didn't feel the necessity of adding a new argument to the CountSpecificItem function, instead i differently added another way of counting the items. Anyway, thanks for making it more cleaner.- 3 replies
-
- 2
-
-
-
- upgrade
- pendant refinment
- (and 6 more)
-
[Fix] Item refinement crash with same material (Pendant refinement)
Owsap posted a topic in Guides & HowTo
When item materials are removed from the refinment process the source item that is beeing refined also get's removed since it's apart of the required item list and this is what causes the game core to crash after any instance like warping. In order to fix this, we can check the source item beeing refined by position, simply by creating a new argument for the function RemoveSpecifyItem with the source item's cell position. char_item.cpp char.h Preview of fix: https://i.imgur.com/9xgfhK8.gifv- 3 replies
-
- 2
-
-
- upgrade
- pendant refinment
- (and 6 more)