Jump to content

Samuel

Members
  • Content Count

    397
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by Samuel

  1. @@Litro why use global variable?
  2. Samuel

    Instances crash

    @@Aeromesi I think this should be in other topic, but how did you create the instance attach? here's mine: if ( ( @ins = instance_create( "Custom Dungeon", getcharid(1), IOT_PARTY ) ) < 0 ) { mes "error : "+ @ins; close; } if ( instance_attachmap( "guild_vs2", @ins, 1, getcharid(1)+"RAID" ) == "" ) { mes "error : 5"; instance_destroy @ins; close; } instance_set_timeout 0, 1, @ins; instance_init @ins; instance_attach @ins;
  3. @@ozwell isn't that a cutin script? cutin "<filename>",<position> 0 - bottom left corner 1 - bottom middle 2 - bottom right corner 3 - middle of screen in a movable window with an empty title bar 4 - middle of screen without the window header, but still movable most likely, he's using position 3
  4. Samuel

    Instances crash

    Yes, via instance_attachmap command right? instance_attachmap("prontera", .@instance_id,1,"via"); "via" will be the replicated map of prontera. This one is useful when you're just going to clone existing maps. But when using custom map, you still need to add clientside things. But you could still use the above method to replicate custom maps, instance_attachmap("1@elements", .@instance_id,1,"blah"+.@customarg);
  5. Samuel

    Instances crash

    yeah, what i do is just use replicate the map via instance system itself, so no need to edit client side, unless you really have custom map, then do what Garr said, decrease the number of letter at mapname yeah, what i do is just use replicate the map via instance system itself, so no need to edit client side, unless you really have custom map, then do what Garr said, decrease the number of letter at mapname
  6. Samuel

    Instances crash

    what's the error at console?
  7. Added Healer/Buffer/Identifier/Repair NPC in one A customizable script that includes 4 NPC's in ONE Healer, Buffer, Identifier and Repair
  8. @@HyperSonic2097 i think it's bec of the new prontera, use the old prontera map files
  9. @@simh herc, just support until 2015-0519 only for now
  10. Samuel

    @cashreload

    @@ReckedCat hmm how were you able to get the leaks? could you point it to me? thanks!
  11. @@mrlongshen try this, <URL>google<INFO>https://www.google.com/,1024,768</INFO></URL>
  12. @@Lambo as i have checked the script, yes it would be different timer for each quest but they will have same delay depends on this setting: so if it's set to have 24 hrs delay, QUEST A, B, C will have 24 hrs delay each. After doing C, you could still do A & B,
  13. @@Lambo I believe tron updated his quest board, link
  14. Added Bind @go command script This script will allow to customize @go lists via script Automatically re-arrange ID's via arrangement of town list Automatically re-creates @go list via arrangement of town list Credits: @@jTynne
  15. @@danizin999 if you're trying to duplicate the quest shop in npc/custom/quests/quest_shop.txt in your duplicate script, you should replace all qshop with whatever custom word you want to use, just use notepad++ then replace all qshop word with something like myshop
  16. @ find this section in your job master: while (true) { mes "Select an option."; next; .@[member=choice] = select(" ~ ^0055FFRebirth^000000:"+(.third_classes ? " ~ ^FF0000Third Class^000000" : "")+": ~ ^777777Cancel^000000"); if (.@[member=choice] == 3) close; mes "[Job Master]"; mes "Are you sure?"; next; if (.@[member=choice] == 1) Job_Menu(Job_Novice_High); else Job_Menu(roclass(.@eac|EAJL_THIRD)); mes "[Job Master]"; } change into: while (true) { mes "Select an option."; next; .@[member=choice] = select(" ~ ^0055FFRebirth^000000:"+": ~ ^777777Cancel^000000"); if (.@[member=choice] == 3) close; mes "[Job Master]"; mes "Are you sure?"; next; if (.@[member=choice] == 1) Job_Menu(Job_Novice_High); mes "[Job Master]"; }
  17. Weight in item db is = to weight/10 in-game. Weight 100 in item db = 10 in-game. see doc/item_db.txt
  18. @@Lambo try this https://github.com/zackdreaver/RO-Clientresources
  19. @@minx123 make a custom job which uses the bleach sprite if you want the sc way, just follow how the costume xmas, oktoberfest and etc were added. if you'll just proceed with the custom job, you could easily use changebase script command in your items
  20. bump? @@Dastgir or any devs out there :-D
  21. @@Vlync enable logs in server, then in groups.conf enable atcommand logs for gm group id you want, everything will be saved id atcommand logs then if you're knowledgeable with php, you can make a site wherein you can easily query the info you need
  22. Samuel

    @cashreload

    @@AnnieRuru yeah, it could be just ask the player to relog, the problem is when players who didn't relog can have problems like buying items wherein price has been changed, they'll see the old value but when they buy, the new value will be deducted i see your point that it could be a problem for players who are doing instance i think, or in maps where the character can't stau upon relogging
  23. Hello everyone! This is a new command to reload the cashshop_db.conf So you don't need to restart the server when you add or delete items in the cash shop or just simply changed the price of items But due to a certain conflict wherein a player needs to relog in order for him to see the changes in Cash Shop, I added a 10 sec countdown and kick command. Special Thanks to: @@AnnieRuru Have a nice day! Link
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.