Jump to content

newja

Member
  • Posts

    52
  • Joined

  • Last visited

  • Days Won

    2
  • Feedback

    0%

newja last won the day on March 7 2015

newja had the most liked content!

About newja

Informations

  • Gender
    Male

Recent Profile Visitors

1497 profile views

newja's Achievements

Contributor

Contributor (5/16)

  • First Post
  • Collaborator
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

53

Reputation

  1. M2 Download Center Download Here ( Internal ) Introduction & Small explaination [Hidden Content] As you can see in the video, this function stores XP amount of the last killed mob. Variable is reseted every time you login into the game (including warps). ##### HowTo ##### ######## Open char.cpp and find ######## ######## Open char_battle.cpp and find ######## ######## Open questlua_pc.cpp and add this function ######## ######## Test Quest ######## (notice that this version isn't the same as showed in the video)
  2. He said that {item_id, count} doesn't work in his table. Solution is easy. local index = { [1] = {1111, 5}, [2] = {2222, 4}, [3] = {3333, 3}, } local idx = index[1] syschat("Item ID: ".. idx[1]) syschat("Count: "..idx[2])
  3. Looks more like spawn effect Good job though.
  4. Don't know how to help you, for me everything works. Have you tried restarting machine?
  5. replace wait("") with wait() in your quest and recompile it again.
  6. yep u have right but the mobs yes, how can get the exp of one mob when i kill him? Well, you can't. It's calculated by the GiveExp function. char.h
  7. say("test ã") Won't work. say("test ã ") Will work. Do you understand now?
  8. When you use "say" function or so, remember that you can't place special chars (e.g. ) at the end of line. It doesn't print the error but instead you get no object files.
  9. quest warp begin state start begin when login with pc.getqf("warp") != 1 begin pc.setqf("warp", 1) pc.warp(34744600, 50289600) end end end
  10. [1] = {33493, 4994}, -- chunjo [2] = {xxxxx, xxxx}, -- shinsoo [3] = {xxxxx, xxxx}, -- jinno index[1] is red (coord X) index[2] is green (coord Z)
  11. quest firstport begin state start begin when login with pc.getqf("first") == 0 begin table = { [1] = {33493, 4994}, [2] = {xxxxx, xxxx}, [3] = {xxxxx, xxxx}, } index = table[pc.get_empire()] pc.warp(index[1], index[2]) pc.setqf("first", 1) end end end
  12. lol wut. You need to end your if/else condition. Besides replace 2 last ifs with else if. And if you get compile error, delete last else line.
  13. Don't know what you're talking about guys because I don't have this problem. Post your syserr or tell me exactly in what conditions this happens.
×
×
  • 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.