Jump to content

HattanBinNassar

Member
  • Posts

    39
  • Joined

  • Last visited

  • Feedback

    0%

About HattanBinNassar

  • Birthday January 15

Informations

  • Gender
    Male
  • Country
    Saudi Arabia
  • Nationality
    Saudi

Social Networks

  • Discord
    Htan-r#4185

Recent Profile Visitors

251 profile views

HattanBinNassar's Achievements

Enthusiast

Enthusiast (6/16)

  • One Year In
  • Dedicated
  • Collaborator
  • Reacting Well
  • First Post

Recent Badges

4

Reputation

  1. UPDATE : 0126 09:18:39907 :: CArea::Load File Load metin2_map_aeon\000000\AreaData.txt ERROR 0126 09:18:39907 :: CArea::Load File Load metin2_map_aeon\000000\AreaAmbienceData.txt ERROR 0126 09:18:39907 :: CMapOutdoor::LoadTerrain AreaProperty Read Error
  2. UPDATE : 0126 03:04:15634 :: CMapBase::LoadProperty(FileName=metin2_map_aeon\MapProperty.txt) - LoadMultipleTextData ERROR File not found. 0126 03:04:15634 :: CMapManager::LoadMap() Invalid Map Type 0126 03:04:15634 :: CPythonBackground::SelectViewDistanceNum(int eNum=0) mc_pcurEnvironmentData is NULL
  3. hey ! ,, i'm facing this error when i try to install a map i made : SYSERR: Jan 25 21:56:32 :: WarpSet: cannot find map location index 0 x 166900 y 116700 name Hattan * Note : the map is in the same core as my GM account in the same core as the map and the map is allowed in the config and registerd in index in the server side
  4. Thanks tho , that helpful ,i will let you know when i finished my website ( i found a really great idea for it )
  5. Nice , this informative , what do you think as a web dev is the most potential risk of a website ?
  6. Soo , you're willing to build a website for your server ? So you must link your database with your website but that have a lot of risks , to optimise the potential risk one of the things That you need to do is " limited privileges user " , So the discussion question is : What's the privileges That you would use for your website user ? For me : i think ( for registration & login process : Account.account.password & Email : update & Select , For players ranking system : Player.player: select For guild ranking system : Player.guild: select For itemsshope : Player.item_award: insert + Other account for ' Coins ' linked with PayPal ) What about your privileges choice ?
  7. Hey ! I have a question , How to delay a code from execution in a quest ? , I'm using : local delayValue = math.random(800,1500) say("[DELAY value; " . . delayValue . . "]. . . . . . . . . . .[/DELAY]") to delay say(" ") But it's have no effect other than slow the chat even the code after say("") start preform faster than the delay , Any ideas ?
  8. i'm facing an error with this quest ,, ( unfinished string ) quest top10players begin state start begin when 20355.chat." ÊÑÊíÈ ÇááÇÚÈíä " begin local query=[[ SELECT player.player.name as m_name, player.player.level as m_level, player.player.exp as m_exp FROM player.player, account.account WHERE player.player.name not like '[%]%' AND date_sub(now(), interval 1 day) < player.player.last_play AND player.player.account_id=account.account.id AND account.account.status='OK' ORDER BY player.player.level DESC, player.player.exp DESC, player.player.name ASC LIMIT 10; ]] function escape_sqli(source) local replacements = { ['"'] = '\\"', ["'"] = "\\'" } return source:gsub( "['\"]", replacements ) end local query=escape_sqli(query) local res1, res2 = mysql_direct_query(query) say_title("ÇÚáì "..res1.." áÇÚÈíä.") for num1, str1 in ipairs(res2) do say_reward(num1.."\t"..str1.m_name.."\t"..str1.m_level.."\t"..str1.m_exp) end end end end help will be apprenticed
  9. Hey ! What's the bast way to implement (" in game registration ") through my client ? ( With the ability to recover passwords , Change warehouse password , email verification ) * I'm trying to do something new and do not make a website at all
  10. Hey ! I'm writing a quest my self rn , i would like to ask : - what's the functions in ( lua ) that can do some interaction with mysql tables and get information from it and do changes on it as well What's the functions ? And what's the best way to implement it ? note * one of my quest intentions is take information from my sql table than delete the information and put it in other log as ( used information )
  11. What the odds ,, i was moment ago reading one of yours questions and because of it i got to know how to secure my root.epk/eix , thanks tho !
  12. Hey lovely ppl in Metin2dev ,, i have couple of questions : 1 - is it possible to limit the client login attempts to 1 per 10 minutes ? 2 - is it possible to limit the login & create accounts to 2 per ip ? 3 - what's the cost of putting the registration to the game through the client it self instead of the website and what's the best way to do it ? ( I want to learn how to script it my self ) thanks !
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.