Jump to content
  • 0

Overthrow on Shadow Chaser


Dvrstle

Question


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  361
  • Reputation:   10
  • Joined:  12/30/11
  • Last Seen:  

i want to make Overthrow skill of kagerou/oboro cannot be copied by plagiarism but can be copied by using reproduce.

/thx

Link to comment
Share on other sites

9 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  782
  • Reputation:   82
  • Joined:  01/01/12
  • Last Seen:  

skill.c and find:


// Couldn't preserve 3rd Class skills except only when using Reproduce skill. [Jobbie]
if( !(sd->sc.data[sC__REPRODUCE]) && (skillid >= RK_ENCHANTBLADE && skillid <= SR_RIDEINLIGHTNING) )
return 0;

Replace into

// Couldn't preserve 3rd Class skills except only when using Reproduce skill. [Jobbie]
if( !(sd->sc.data[sC__REPRODUCE]) && (skillid >= RK_ENCHANTBLADE && skillid <= SR_RIDEINLIGHTNING || skillid == KO_MUCHANAGE)  )
return 0;

Edit: Better solution updated.

Edited by darristan
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  361
  • Reputation:   10
  • Joined:  12/30/11
  • Last Seen:  

btw, my players have already copied Overthrow using plagiarism, will it cause any problem?

any answer please? /sob

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

nope but you can force them to remove the copied skill..

by deleting it from the database..

UPDATE global_reg_value SET value=0 WHERE str="REPRODUCE_SKILL" AND value="3008";

:meow:

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  361
  • Reputation:   10
  • Joined:  12/30/11
  • Last Seen:  

ahh nice malufett =) nice follow up.. that's what I want hhaha.. . . those who can answer follow up questions!! /no1

nope but you can force them to remove the copied skill..

by deleting it from the database..

UPDATE global_reg_value SET value=0 WHERE str="REPRODUCE_SKILL" AND value="3008";

meow:

btw, how about removing it completely on the skills that can be copied by plagiarism and reproduce. /thx in advance

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

darristan's suggestion/example is good enough to disable this skills to copy Muchanage..

:meow:

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  361
  • Reputation:   10
  • Joined:  12/30/11
  • Last Seen:  

i mean, how can I completely remove it on the skills that can be copied by plagiarism and reproduce because the first one i asked is just on the plagiarism /heh

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  554
  • Reputation:   70
  • Joined:  04/04/12
  • Last Seen:  

actually its already the answer for your problem...because for you to be able to copy skills via reproduce the skill must be in the 'skill_reproduce_db.txt' database..and since its not added there so by default it cannot be copied..:)

:meow:

  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  125
  • Topics Per Day:  0.03
  • Content Count:  361
  • Reputation:   10
  • Joined:  12/30/11
  • Last Seen:  

/thx malufett
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  21
  • Reputation:   0
  • Joined:  12/24/11
  • Last Seen:  

1>------ Build started: Project: map-server_sql, Configuration: Debug Win32 ------

1> skill.c

1>d:\rathenaclean\src\map\skill.c(496): error C2065: 'skillid' : undeclared identifier

1>d:\rathenaclean\src\map\skill.c(496): error C2065: 'skillid' : undeclared identifier

1>d:\rathenaclean\src\map\skill.c(496): error C2065: 'skillid' : undeclared identifier

========== Build: 0 succeeded, 1 failed, 2 up-to-date, 0 skipped ==========

 

How to fix this??

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...