Jump to content

Katrina Mishow

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Katrina Mishow's Achievements

Poring

Poring (1/15)

0

Reputation

  1. So, I set transcendent_status_points in player.conf to a higher number... but I noticed that it seems to have no affect. While perusing pc.cpp, I noticed this block of code. // Give or reduce transcendent status points if( (b_class&JOBL_UPPER) && !(sd->class_&JOBL_UPPER) ){ // Change from a non t class to a t class -> give points sd->status.status_point += battle_config.transcendent_status_points; clif_updatestatus(sd,SP_STATUSPOINT); }else if( !(b_class&JOBL_UPPER) && (sd->class_&JOBL_UPPER) ){ // Change from a t class to a non t class -> remove points if( sd->status.status_point < battle_config.transcendent_status_points ){ // The player already used his bonus points, so we have to reset his status points pc_resetstate(sd); } sd->status.status_point -= battle_config.transcendent_status_points; clif_updatestatus(sd,SP_STATUSPOINT); } If I understand this correctly... transcendent_status_points is supposed to be in battle.conf, not player.. I'm *SUPER* new at playing with the scripting so I'm not sure if I'm right on this. [Note: Added it to battle, but doesn't seem to have done anything either, so it's likely I'm wrong, but figure I'd point it out anyways?] Also, curiously, if this is the correct spot, is it possible to add classes to this list that get the extra points?
  2. Of course. One place I forgot to look. Thank you!
  3. Random question: Where would I look to put in something like a kill bounty on mobs? Like getting a small percent of the mob's exp per kill. Or something to that affect? Thank you~
  4. I'm wandering through the job_db2.txt file to help me create a much more customized job_exp.txt and... Well there's some things that I'm not sure what the purpose of are. This isn't super important, but I'm a curious type. Example: For all the 3-1/2 classes, why is there a job number for "xxxx (Regular)" and "xxxx (Trans)" .... Isn't it not (defaultly) possible to have a 3-1/2 job that hasn't been transcended? What is "Gangsi (Bongun/Munak)" "Death Knight" and "Dark Collector" for? I apologize if these are stupid questions, but.. I haven't had contact with RO for WELL over 10 years. I'm a little out of the loop, lol. Thanks!
×
×
  • Create New...