Jump to content

Kubix

Members
  • Content Count

    150
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by Kubix

  1. Thank you! @@Aeromesi I know about set, and I will update the script. Current Endless Cellar not working on Hercules. http://herc.ws/board/topic/5177-endless-cellar/?hl=%2Bendless+%2Bcellar
  2. Updated Endless Cellar for Hercules Script: GitHub
  3. What a type of item you planning to create? usable? healing?
  4. http://herc.ws/board/topic/11901-ipb-ragnarok-accounts-integration/ up
  5. Information about release: here. Sample NPC ingame, flux cp addons, sql-files. Download: Google.Drive
  6. Kubix

    Instances crash

    I don't have errors. Client crushing. Solved. mes instance_mapname("1@elements", .@instance); -> 0001@elemen, but mapname is elements
  7. Kubix

    Instances crash

    Hi there. I don't know what to do x.x After warp to instance - client crashing. Script: instances,107,138,7 script Test PORTAL,{ .@md_name$ = "Test"; .@party = getcharid(1); .@p_name$ = getpartyname(.@party); if( !instance_check_party(.@party, 1) ) { mes .@md_name$; mes "Fail: 1"; close; } switch(select("Generate:Enter:Destroy")) { case 1: .@instance = instance_create(.@md_name$, .@party); if(.@instance < 0) { mes "Fail."; close; } instance_attachmap("1@elements", .@instance); instance_set_timeout 14400, 300, .@instance; instance_init(.@instance); instance_attach .@instance; warp instance_mapname("1@elements", .@instance), 86, 74; end; case 2: if (has_instance("1@elements") != "") warp instance_mapname("1@elements", .@instance), 86, 74; else end; case 3: instance_destroy(.@instance); close; } } resnametable: [email protected]#[email protected]# [email protected]#[email protected]# [email protected]#[email protected]# 유저인터페이스\map\[email protected]#유저인터페이스\map\[email protected]# Map added to mapindex, maps.conf, and my grf. when i use @warp 1@elements - OK. Also i try : warp has_instance("1@elements", .@instance), 86, 74; warp "1@elements", 86, 74; help xD
  8. hi! sorry, working now. don't have a time. i will try tonight!
  9. http://upaste.me/08d8226956edfea7b change Case to case
  10. yep, my bad. change this: bidnatcmd "bgm", strnpcinfo(0) + "::OnStartBGM", 99, 99; to this: bindatcmd "bgm", strnpcinfo(0) + "::OnStartBGM", 99, 99;
  11. @bgm <name from array> @bgm 1 @bgm 2 and etc.
  12. Yes, but you need add music name to array (150~ names) -[tab]script[tab]BGMCOMMAND[tab]FAKE_NPC,{ OnInit: bindatcmd "bgm", strnpcinfo(0) + "::OnStartBGM", 99, 99; setarray .musicName$[0], "1", "2", "3"; //add yours end; OnStartBGM: if(.@atcmd_parameters$[0] == "") { message strcharinfo(0), "BGM failed: invalid music name"; end; } freeloop(1); for(.i = 0; .i < getarraysize(.musicName$); .i++) { if(.@atcmd_parameters$[0] == .musicName$[.i]){ playbgmall .@atcmd_parameters$[0]; message strcharinfo(0), "BGM: Played - " + .@atcmd_parameters$[0]; end; } } freeloop(0); message strcharinfo(0), "BGM failed: invalid music name"; end; } not tested
  13. request: http://herc.ws/board/topic/11776-request-forum-system/ For? You can give rewards ingame for forum achievements. Example: 100 messages = 500K zeny 20 likes = 50k zeny 3 trophies = 3K zeny and whatever you want:) Maybe later I will write a new functions for give rewards on forum for achievements in game Example: 100 pvp kills = new icon on forum and etc. Info: Forum tables must be in one database with ragnarok tables (because I do not remember whether you can use a different database from RO, in addition to the one that is configured in inter_athena) Video: https://youtu.be/2C3VzMWV2G4 Download (sample NPC and FluxCP addon): Google Drive Configure /addons/integration/lang/en_us.php !
  14. switch(Sex) { case 0: mes "female"; close; case 1: mes "male"; close; }
×
×
  • Create New...

Important Information

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