Jump to content

Lord Ganja

Members
  • Posts

    444
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Lord Ganja

  1. Is it possible to run an RO client on virtualbox? I already installed the Guest Additions with 3D Acceleration, set video memory to 256mb, checked Enable 3D Acceleration, and cheked Enable 2D Video Acceleration. Then I tried running my 2013-12-23 client inside the virtualbox and it isn't even opening. The setup.exe can't detect the resolution of the client. Anyone knows how to run a client inside the virtualbox? Help me please. Thanks in advance!
  2. I think you need to add it as a custom job. Then replace summer suit effect from sc_start sc_summer into changebase <job id>, so it will act like a disguise using the summer job sprite.
  3. https://rathena.org/board/topic/70006-disable-specific-commands-in-a-map/
  4. Are you using this client on a live server? Just asking coz im also planning to use this client.
  5. He was stating that 80% of the codes that are already posted were not working. Coz I got mine working, I just copy paste stuffs from what i've searched here. and im currently using the latest revision.
  6. can you point out which one isn't working?
  7. Thank you for the explanation, glad that you somehow answer a question posted in rathena. LOL Guess I'll just have to wait for your mobevent patch to be released in hercules. Hope it wouldn't be a plugin. xD I also found it useful since the script im working on requires lot of mob tweaks.
  8. Try to download a fresh rathena.
  9. Can you give me an example of this? and how do I 'set to if slavecnt less then 5'? btw thank you!
  10. Can anyone explain to me what are these parameters for? and how to use it? Idk how to use them since there's not further explanation on the script commands doc. Thanks in advance! UMOB_MASTERAID UMOB_AI UMOB_SCOPTION UMOB_SLAVECPYMSTRMD UMOB_DMGIMMUNE
  11. Just replace the drop act. zoro sword.rar
  12. Just saw this somewhere before. Maybe you can try it. Index: src/char/char.c =================================================================== --- src/char/char.c (revision 15859) +++ src/char/char.c (working copy) @@ -1366,6 +1366,13 @@ return -2; // character account limit exceeded } + if( sd->group_id > 0 && sd->group_id < 99 ) { + if( SQL_ERROR == Sql_Query(sql_handle, "SELECT 1 FROM `%s` WHERE `account_id` = '%d'", char_db, sd->account_id) ) + Sql_ShowDebug(sql_handle); + if( Sql_NumRows(sql_handle) >= 1 ) + return -2; // character account limit exceeded + } + // check char slot if( SQL_ERROR == Sql_Query(sql_handle, "SELECT 1 FROM `%s` WHERE `account_id` = '%d' AND `char_num` = '%d' LIMIT 1", char_db, sd->account_id, slot) ) Sql_ShowDebug(sql_handle);
  13. Is it possible to summon a random monster slave? a monster can summon 5 slaves using NPC_SUMMONSLAVE, is it possible for this slaves to be random or no? I have 15 slaves monster that I wanted to randomly summoned by a boss monster. I wanted it to choose randomly from the 15 slaves and summon 5 slaves only.. so it will do like rand(15) Anybody can help me do this? thanks in advance!
  14. I don't know if there's any command to check if the tile is already occupied by another item. I guess there isn't. If you wanted to randomly drop it just use rand. sample prontera,150,150,4 script randromdrop 100,{ makeitem 608,1,"prontera",rand(147,153),rand(147,153); end; }
  15. Sorry. My code isn't actually a broadcaster. It was an auto-announcer npc. Try that link I posted above
  16. anong client gamit mo? di mo ata nalagay yung tamang view id para jan sa custom item. check mo item_db - server side system/iteminfo.lub - client side
  17. Trying this one but nothing happen.. no npc added ill put it in npc/custom.. but yea nothing happen how can i fix it? Sorry my bad. I thought it was auto announcement npc. LOL Try this one posted here LINK
  18. you can just up date it to the latest. or if you don't want you can edit it in src/map/skill.c
  19. what's the git version you are using? take a look at this LINK you might also check your map if it's flagged as a guild map
  20. - script autoannounce -1,{ OnInit: while(1) { announce "Welcome To rAthena! Enjoy Your Stay Here!",bc_all; sleep 630000; announce "If you found any BUG, please report it immediately to any of the GM-Team",bc_all; sleep 66000; announce "REMEMBER: No GM has the right to ask a player of any of his/her account information, so please, NEVER let anyone deceive you.",bc_all; sleep 690000; } }
  21. You can remove permanent mvp spawns and create a new npc that will spawn those mvps using *monster command. use the event label to set the delay of spawn. after spawning, modify their hp, atk, stats, etc.. to whatever you like using the command *setunitdata, this is the updated setunitdata
  22. win in what kind of event? event_pts += 5; // Replace 5 how much event pts you want to give the character Shop prontera,177,145,4 script Event Points Shop 506,{ dispbottom "You currently have "+event_pts+" Event Points."; callshop "eventpt_shop",1; end; } - pointshop eventpt_shop -1,event_pts,678:5,607:5,608:1
  23. No prob. Please mark this thread as solved.
×
×
  • Create New...