Jump to content

sandbox

Members
  • Posts

    949
  • Joined

  • Last visited

  • Days Won

    16

Everything posted by sandbox

  1. It should work the same even if its equipped, 'equip' column contains the equipment slot, not the item id
  2. bakit mo binago ung script? pano ba talaga process na gusto mo
  3. You can use this to create a one-click access to your website/forums/wiki/patcher/exe. You can even use this like an offline NPC with the proper idea and coding. The possibilities are limitless, i'm just showing one of its purposes, what you only need is to imagine and improvise Visual Basic/C# is a great OOP language which is used in some of the 3rd party tools that you see in our forums.. Even Visual C++ which is used by most people as rAthena's compiler only, which is sad since it has more uses like the one stated above.
  4. I'm not sure if what functions are unsupported by eA.. Try this.. - script PoringMob -1,{ OnMinute00: if(!(gettime(3) % 2)) { announce "Poring mob has started",0; monster "prontera",123,42,"--ja--",1002,100,strnpcinfo(1)+"::OnPoringDeath"; } end; OnPoringDeath: set @PoringKill,@PoringKill+1; if(@PoringKill == 30) { announce strcharinfo(0)+" is the winner!",0; atcommand "@killmonster2"; getitem 7227,10; } end; } It would also be helpful if you would just post a screenshot of your console where it shows the error >_>
  5. just change prontera to guild_vs1 >_>
  6. If you mean via phpmyadmin.. UPDATE `inventory` SET `nameid`=4444 WHERE `nameid`=8888; UPDATE `cart_inventory` SET `nameid`=4444 WHERE `nameid`=8888; UPDATE `storage` SET `nameid`=4444 WHERE `nameid`=8888; UPDATE `guild_storage` SET `nameid`=4444 WHERE `nameid`=8888; If you want it via npc script, just add enclose them in query_sql()' Make sure your server is turned off.. And you have a backup.
  7. - script PoringMob -1,{ OnMinute00: if(!(gettime(3) % 2)) { announce "Poring mob has started",0; monster "prontera",123,42,"--ja--",1002,100,strnpcinfo(1)+"::OnPoringDeath"; } end; OnPoringDeath: @PoringKill++; if(@PoringKill == 30) { announce strcharinfo(0)+" is the winner!",0; killmonster "prontera","All"; getitem 7227,10; } end; }
  8. - script WelcomeNewbie -1,{ OnPCLoginEvent: if(Class == Job_Novice && !BaseExp && !#Welcome) { announce "Welcome to ServerRO "+strcharinfo(0)+"!, Enjoy Playing!~",bc_self; set BaseExp,1; #Welcome = 1; } end; }
  9. It's currently being worked on. http://rathena.org/board/tracker/issue-8711-error-message/
  10. You should focus on what kind of rates you are used to. That way you would know what kind of gameplay you should offer your players. Just my two cents.
  11. - script Maintenance -1,{ OnTue09000: announce "Server maintenance in 1 hour",0; end; OnTue0915: announce "Server maintenance in 45 mins.",0; end; OnTue0930: announce "Server maintenance in 30 mins.",0; end; OnTue0945: announce "Server maintenance in 15 mins.",0; end; OnTue0958: announce "Server maintenance in 2 mins. Please logout to prevent item loss and rollbacks.",0; end; OnTue1000: atcommand "@kickall"; atcommand "@mapexit"; end; } or.. - script Maintenance -1,{ OnTue09000: announce "Server maintenance in 1 hour",0; sleep2 900000; announce "Server maintenance in 45 mins.",0; sleep2 900000; announce "Server maintenance in 30 mins.",0; sleep2 900000; announce "Server maintenance in 15 mins.",0; sleep2 780000; announce "Server maintenance in 2 mins. Please logout to prevent item loss and rollbacks.",0; sleep2 120000; atcommand "@kickall"; atcommand "@mapexit"; end; } whatever floats your boat..
  12. sandbox

    NPC Script

    Upon loading it via @loadscript, yes it would show up but when the server starts, it wouldn't. So you have to hide it manually if you load it via command. For the new schedule, replace OnHour with OnWed1700: OnSun1600: For the one time limit, add this if(gettimetick(2) < .@Delay) { mes "Sorry, you can only claim this once every WoE"; close; } above switch(Class) { also this .@Delay = gettimetick(2)+10800; above mes "Here you go, goodluck!";
  13. sandbox

    help needed~

    rAWiki is your friend
  14. You should be looking here.. http://rathena.org/board/forum/44-employment/
  15. Try to rebuild your mapcache.
  16. Not sure what really is his problem, as he's stated above, he already has basic skill.
  17. You should try to update your files. By default storage is supposed to be accessible via kafra.
  18. from client seem likes splash screen. Hmm.. I don't have the codes right now for I am at work, but i'll give you the logic, > Create a new form, make it as your default form. > Edit its properties and make it a borderless window > Insert picture box then resize it to the max size of the form > Code it to load for at least 1-3 seconds. > After the loading delay, unload the picture box form, load your launcher's form There's some code like that roaming in google, I can't code in VB during weekdays so yeah. Google would be your friend for this one.
  19. Aura ba yan? Parang moonlight water mill na skill ah
  20. Andito ung mga filenames ng weapons, palitan mo sila gamit ung sprite na gagamitin mo http://ratemyserver.net/index.php?page=riot_bible_main
  21. Update mo RO files mo, lalo na ung lua. Mas mainam kung mag download ka ng iRO para english na lahat
  22. Paste mo dito ung line ng mga converters mo galing item_db.txt
×
×
  • Create New...