Jump to content

LearningRO

Members
  • Posts

    778
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by LearningRO

  1. maybe you can add manual this commits https://github.com/rathena/rathena/pull/4067
  2. if you use lastest rathena just use this script commands *setpcblock <type>,<state>{,<account ID>}; *getpcblock {<account ID>}; 'setpcblock' command prevents/allows the player from doing the given <type> of action according to the <state> during the player session (note: @reloadscript removes all <type> except PCBLOCK_IMMUNE). The <type> values are bit-masks, multiples of <type> can be added to change the player action. The action is blocked when the <state> is true, while false allows the action again. 'getpcblock' command return the bit-mask value of the currently enabled block flags. Available <type>: PCBLOCK_MOVE Prevent the player from moving. PCBLOCK_ATTACK Prevent the player from attacking. PCBLOCK_SKILL Prevent the player from using skills/itemskills. PCBLOCK_USEITEM Prevent the player from using usable items. PCBLOCK_CHAT Prevent the player from sending global/guild/party/whisper messages. PCBLOCK_IMMUNE Prevent the player from being hit by monsters. PCBLOCK_SITSTAND Prevent the player from sitting/standing. PCBLOCK_COMMANDS Prevent the player from using atcommands/charcommands. PCBLOCK_NPCCLICK Prevent the player from clicking/touching any NPC/shop/warp. PCBLOCK_EMOTION Prevent the player from using emotions. PCBLOCK_NPC Simulate NPC interaction. Useful for NPC with no mes window. Sum of PCBLOCK_MOVE|PCBLOCK_SKILL|PCBLOCK_USEITEM|PCBLOCK_COMMANDS|PCBLOCK_NPCCLICK. PCBLOCK_ALL Sum of all the flags. Examples: // Make the attached player invulnerable to monster (same as @monsterignore) setpcblock PCBLOCK_IMMUNE, true; // Prevents the attached player from attacking and using skills setpcblock PCBLOCK_ATTACK|PCBLOCK_SKILL, true; // Re-enables attack, skills and item use setpcblock PCBLOCK_ATTACK|PCBLOCK_SKILL|PCBLOCK_USEITEM, false; // getpcblock related checks if (getpcblock() & PCBLOCK_IMMUNE) mes "You are invulnerable!"; if (getpcblock() & (PCBLOCK_MOVE|PCBLOCK_SITSTAND)) mes "You can't walk or sit."; if ((getpcblock() & (PCBLOCK_ATTACK|PCBLOCK_SKILL)) == 0) mes "You can attack and use skills."; if (getpcblock() & PCBLOCK_CHAT) mes "You can't chat.";
  3. and rathena not yet support for client 2019 above
  4. this is increase the number player online?
  5. try to setting Transparentitem.lub added your robe id into there
  6. Download ini patcher lite lalu masukan ke folder KRO kamu tinggal jalanin deh selesai INI
  7. I have similiar issue. i'm already setting on externealsetting everything change into 185 but when i get maks level 185 im still use yellow aura??
  8. better post this issue on github
  9. Hi, all how to disable feature RODEX? i don't see any config on battle folder on Hercules can be setting on config Does rathena have it too?
  10. nice collection.. really interesting about auto reward on MVP weekly reward ?
  11. thanks ? i never thinking about that way LOL thanks a lot broo
  12. Hi, All how to solved script atcommand when nickname have space ex : "A B C" Example Script atcommand - script DonationUpdate -1,{ OnInit: start: initnpctimer; end; OnTimer5000: set $@nb2,query_sql("SELECT COUNT(*) FROM test_donation WHERE status=0",$@count); if($@count != 0) { set $@nb,query_sql("SELECT id, account_id,donate,status FROM test_donation WHERE status='0'",$@id,$@account_id,$@donate,$@status); for (.@i = 0; .@i < $@nb; .@i++) { if (isloggedin($@account_id[.@i])) { // check if player online atcommand "#cash "+rid2name($@account_id[.@i])+" "+$@donate[.@i]; query_sql("UPDATE test_donation SET status='1' WHERE id='"+$@id[.@i]+"' AND account_id='"+$@account_id[.@i]+"'"); } } } else finish: stopnpctimer; goto start; } this script only work when nickname player doesn't have space any idea to solved this issue?
  13. are you sure, you have same config?? [Config:Main] RootURL='' RemoteConfigFile='main.ini' TimeOut=0 StatusFile='data.dat' <<<<<< HERE DefaultGRF='data.grf' ClientEXE='ragexe.exe' ClientParameter='-1sak1' FinishOnConnectionFailure=false
  14. how about this issue ? any solution?
  15. Hi, All i want to spawn monster but all status include mdef/def/element can be configuration via NPC? how to syncron between Monster and NPC for setting
  16. he already out from rathena or hercules long time ago ?
  17. questinfo( QTYPE_QUEST, QMARK_YELLOW, "!isbegin_quest(14656) && BaseLevel >= 130 && BaseLevel <= 175" );
  18. @Zell its something related with this issue? https://github.com/rathena/rathena/issues/4289 can you make this for NPC SPRITE?
  19. Okay at least I know it is a bug. Thanks bro
×
×
  • Create New...