-
Content Count
159 -
Joined
-
Last visited
-
Days Won
5
IonutRO last won the day on July 5 2020
IonutRO had the most liked content!
Community Reputation
84 NeutralAbout IonutRO

-
Rank
Friendly
- Birthday 03/01/1999
Informations
-
Nationality
Romanian
-
Gender
Male
-
Location
Romania
Social Networks
-
Skype
ionutpopescu10
-
Discord
Ionuț#9065
- Website
Skills
-
C++
Advanced
-
LUA
Beginner
-
Python
Intermediate
-
PHP
Expert
-
SQL
Expert
-
HTML
Expert
-
CSS
Advanced
-
JavaScript
Advanced
-
IonutRO started following Problem with ovh server at connect to website. and [Site] Publication news
-
Wrong names in input values, in the php cehck you have: $_POST ['title'] ; $_POST ['content'] But in the html part you have: <input type="text" size="40" maxlength="200" name="titel" /> <textarea style="resize: none;" rows="5" cols="40" name="inhalt"> The names must match.
-
Problem with ovh server at connect to website.
IonutRO replied to DeYaN.'s question in Questions & Answers
Ok, but did you try to show the error at the attempting connection in the site? ... -
IonutRO started following How to add more ID for costumes, Web Design - Story of Metin2, How read 2 loop simultaneously ( for in ) ? and 1 other
-
https://mega.nz/file/Zp10HJCD#HTRz8fa4I6cE5Q8K7Z5NhNL4j9dO-CnWae7WtFZq5iQ
-
How read 2 loop simultaneously ( for in ) ?
IonutRO replied to Mustang's question in Questions & Answers
You also need to rewrite the code where you call GET_ACCESSORY_MATERIAL_VNUM(), in this moment is expected only one int number. In the new function, will return an array with 2 int numbers. -
How read 2 loop simultaneously ( for in ) ?
IonutRO replied to Mustang's question in Questions & Answers
You can't just return in the first loop, a return means that the function did the job, and has an result, anythink after return will not be used. One example about what can you do: def GET_ACCESSORY_MATERIAL_VNUM(vnum, subType): ret = vnum item_base = (vnum / 10) * 10 result = [None, None] for info in JewelAccessoryInfos: if item.ARMOR_WRIST == subType: if info[1] == item_base: result[0] = info[0] elif item.ARMOR_NECK == subType: if info[2] == item_base: result[0] = info[0] elif item.ARMOR_EAR == subType: if info[3] == item_base: result[0] = info[0] for i -
Metin2CMS - Item Shop v3 & Social Authentication System
IonutRO replied to IonutRO's topic in Scripts / Systems
NEW! A little preview: Since I made the presentation I have added another function. Possibility to link multiple accounts to the same social account: I only included discord, steam and facebook. You can implement any external authentication that provides an auth api. The implementation is done only on the site side, not needing adaptations on the source side. Price : 50 euro Contact: Skype: ionutpopescu10 Discord: Ionuț#9065 Facebook: https://www.facebook.com/IonutPopescu.Ro/ Contact page: https://metin2cms.cf/co -
These are tables provided by websites, you don't need them, only if your homepage use them, you can delete them by select them -> right click -> delete.
- 1 reply
-
- 1
-
-
It is impossible to have no more ids........
-
open [Problem]Convert Actually Item/mob_proto
IonutRO replied to arcathiel's question in Questions & Answers
You can make a converter yourself, it's really simple. You use tabs as delimiters and take line by line. -
Metin2CMS - Item Shop v3 & Social Authentication System
IonutRO replied to IonutRO's topic in Scripts / Systems
#bump -
In eterPythonLib/PythonSlotWindow.h search: CGraphicImageInstance * pInstance; Add after: CGraphicImageInstance * pInstanceLevel; Search for: void Destroy(); Insert after: void SetSlotLevelImage(DWORD dwIndex, CGraphicImage * levelImage); Open eterPythonLib/PythonSlotWindow.cpp and search: Slot.pFinishCoolTimeEffect = NULL; Add after: Slot.pInstanceLevel = NULL; Search for: void CSlotWindow::SetSlotCount(DWORD dwIndex, DWORD dwCount) Insert after: void CSlotWindow::SetSlotLevelImage(DWORD dwIndex, CGraphicImage * levelI
-
Simple, and yet a very good idea. Nice work.
-
Metin2CMS - Reverse Shell Command Execution / Code Injection Fix
IonutRO replied to metho's topic in Guides & HowTo
I had planned this update for some time. It's just that I haven't published anything yet, because I still have work on it. People who come to me to encode their design receive the latest files, so some of them have already this. I didn't realize it was a security issue. I initially made that change some time ago because many email services need to receive the source email, not one that doesn't exist.