Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. // ........{ callfunc "warptomap"; },{},{}
  2. bonus bMaxHPrate,( getrefine() * 10 ); bonus bMaxSPrate,( getrefine() * 10 );
  3. try http://upaste.me/raw/8cde0c
  4. till you logout ....
  5. try http://upaste.me/raw/691b80
  6. * Please do not post all your problem twice in both Script Request and Script Support forum ... read the Forum Rules ..
  7. because your vote point stored differently....we dont what how you store your vote point ....all we can do is just show you a way that can display a variable ...
  8. if( BaseJob == Job_Wizard ){ bonus bMaxHPrate,100; } if( BaseJob == Job_Taekwon || BaseJob == Job_Star_Gladiator ){ bonus2 bAddRace,7,100; } try
  9. mes "You gained 1 "+getitemname( .@i )+"."; getitem .@i,1;
  10. find the line where event starting...then add this hideoffnpc strnpcinfo(0); then find the line where event ending...then add this hideonnpc strnpcinfo(0);
  11. OnPCBaseLvUpEvent: sc_start SC_ITEMBOOST,99999999,-10; if( BaseLevel >= 90 && !countitem( 731 ) ){ getitem 731,1; } end; the part where you mention the item will drop the exp rate of their ... i think you need to use source mod ... not sure if this sc_status can help in reducing exp ..
  12. change OnStart: sleep2 5000; set .Round,.Round + 1; if( .Round > $WikiRound ){ mapannounce .Map$,"Monster Wiki Event has Ended. Thank for Participate in this Event.",bc_map,0x7766EE; set .WikiStatus,0; sleep2 5000; //mapwarp .Map$,"prontera",155,171; setnpcdisplay( strnpcinfo(0),rand( 436,439 ) ); to OnStart: hideoffnpc strnpcinfo(0); sleep2 5000; set .Round,.Round + 1; if( .Round > $WikiRound ){ mapannounce .Map$,"Monster Wiki Event has Ended. Thank for Participate in this Event.",bc_map,0x7766EE; set .WikiStatus,0; sleep2 5000; //mapwarp .Map$,"prontera",155,171; setnpcdisplay( strnpcinfo(0),rand( 436,439 ) ); hideonnpc strnpcinfo(0);
  13. use SQL software like ...MySQL Workbench ...PhpMyAdmin ... login your MySQL/PHPMyAdmin. .....select your table....click the value....edit...done.... else.. UPDATE `tablename` SET `field` = 'value'; add the condition if you have any...
  14. try { disguise 1060; sleep2 5000; undisguise; },{},{}
  15. you can add it if you want extra command to trigger it.
  16. it should be like this...http://upaste.me/raw/54d5fb and..you are unable to do a realtime count since saving data into database required some time or event to trigger it.
  17. since most of the "ID" inside the table of each SQL table for RO is kinda useless...and meaningless...you can just simply remove all the "ID" column / datafield ...and re-import it ...
  18. dispbottom "You got "+#CASHPOINTS+" cash points."; dispbottom "You got "+#VOTEFORPOINTS+" vote points."; dispbottom "You got "+#KAFRAPOINTS+" kafra points.";
  19. just set all your GM Group ID above 0 .....and set minimum group id to connect to 1 ...
  20. conf/login_athena.conf#L74 // Minimum account group id required to connect to server. // Will not function if group_id_to_connect config is enabled. // -1: disabled // 0 or more: group id min_group_id_to_connect: -1
  21. Case 1: getitem 7073,1; break; Case 2: getitem 7074,1; break; Case 3: getitem 7075,1; break; ... ... ... ...
×
×
  • Create New...