Jump to content

Cisqua

Members
  • Posts

    131
  • Joined

  • Last visited

Everything posted by Cisqua

  1. thanks for reply Anacondaqq, why this warning shown in map server? is this a bug or something?
  2. anyone can explain how to solve this? [Warning]: pc_bonus_autospell: Reached max (10) number of autospells per character! [Warning]: pc_bonus_autospell: Reached max (10) number of autospells per character! [Warning]: pc_bonus_autospell: Reached max (10) number of autospells per character!
  3. anyone can put an SUCCESS RATE each of item 4701 - 70% 4702 - 50% 4703 - 15% 4704 - 5% 4705 - 1% //v1.4 prontera,156,156,4 script Enchant Expert 421,{ // ---------------------------------------------------------- // Character Variables set .@geid, getequipid(EQI_HEAD_TOP); set .@cout, countitem(.item); set .@gin$, getitemname(.item); set .@gerf, getequiprefinerycnt(1); set .@crd1, getequipcardid(EQI_HEAD_TOP,0); set .@crd2, getequipcardid(EQI_HEAD_TOP,1); set .@crd3, getequipcardid(EQI_HEAD_TOP,2); set .@crd4, getequipcardid(EQI_HEAD_TOP,3); set .@itm, rand(4700,4705); // ---------------------------------------------------------- mes .npc$; mes "First and most importantly."; mes "^ff5555Existing Refine Level of the Headgear"; mes "and Cards will be GONE.^000000"; mes "Do you still want to try an Enchant?"; if ( select ( "yes", "no" ) == 2 ) close; next; mes .npc$; mes "I can endow your glasses with mystical powers, but It'll cost yah ^FF3355"+.pric+" "+((.pric-1)?.@gin$+"s":.@gin$)+"^000000."; next; if(!.@cout) { mes .npc$; mes "Sorry come back when you have ^FF3355"+.@gin$+"(s)^000000."; close; } if(select("Yes:No")&2) { mes .npc$; mes "Alright, thanks anyways!"; close; } if ( .@crd1 == 255 || .@crd1 == 254 ) { mes .npc$; mes "I can't enchant a signed equipment"; close; } if ( .@crd4 ) { mes .npc$; mes "this armor has already enchanted!"; close; } if(.@cout<.pric) { mes .npc$; mes "I'm sorry you don't have enough ^FF3355"+.@gin$+"(s)^000000 to for me to endow your specticals, please come back later."; close; } if(rand(0,((100/.perc)-1))) { mes .npc$; mes "I'm sorry but I've failed you!"; misceffect 155; emotion e_sob,0; delitem .item,.pric; close; } mes .npc$; if(compare(.uit$,""+.@geid)) { delitem .item,.pric; delitem2 .@geid, 1, 1, .@gerf, 0, .@crd1, .@crd2, .@crd3, .@crd4; getitem2 .@geid, 1, 1, .@gerf, 0, .@crd1, .@crd2, .@crd3, .@itm; misceffect .efet; mes "All done!"; equip .@geid; close; } mes "I'm sorry but you need to equipped a ^FF3355slotted quest upper-range headgear^000000 before we can continue."; close; //NPC Constants OnInit: //=-=-=-=-=-=-=Configuration=-=-=-=-=-=-= set .npc$, "[^0000FF Enchant Expert ^000000]"; // NPC Name set .pric, 1; // Price set .efet, 154; // Effect Number set .item, 7808; // God Hammer // Item Number set .uit$, "5137"; // Item List set .perc, rand(20,70); // Percent //=-=-=-=-=-=-=-=-Skorm-=-=-=-=-=-=-=-=-= }
  4. You can do restrict code on this map then remove gvg mapflag
  5. now this what ive done. but how to stop if the headgear already enchant can be enchant again. //v1.4 new_1-2,95,71,4 script Enchant Expert 100,{ //Character Variables set .@geid, getequipid(1); set .@cout, countitem(.item); set .@gin$, getitemname(.item); set .@gerf, getequiprefinerycnt(1); set .@crd1, getequipcardid(1,0); set .@crd2, getequipcardid(1,1); set .@crd3, getequipcardid(1,2); set .@crd4, getequipcardid(1,3); // set .@itm, 4700+((rand(5)*10)+rand(3)); set .@itm, rand(40120,40125); mes .npc$; mes "I can endow your glasses with mystical powers, but It'll cost yah "+.pric+" "+((.pric-1)?.@gin$+"s":.@gin$)+"."; next; if(!.@cout) { mes .npc$; mes "Sorry come back when you have "+.@gin$+"(s)."; close; } if(select("Yes:No")&2) { mes .npc$; mes "Alright, thanks anyways!"; close; } if(.@cout<.pric) { mes .npc$; mes "I'm sorry you don't have enough "+.@gin$+"(s) to for me to endow your specticals, please come back later."; close; } if(rand(0,((100/.perc)-1))) { mes .npc$; mes "I'm sorry but I've failed you!"; misceffect 155; emotion e_sob,0; delitem .item,.pric; close; } mes .npc$; if(compare(.uit$,""+.@geid)) { delitem .item,.pric; delitem2 .@geid, 1, 1, .@gerf, 0, .@crd1, .@crd2, .@crd3, .@crd4; getitem2 .@geid, 1, 1, .@gerf, 0, .@crd1, .@crd2, .@crd3, .@itm; misceffect .efet; mes "All done!"; equip .@geid; close; } mes "I'm sorry but you need to equipped a slotted upper-range headgear before we can continue."; close; //NPC Constants OnInit: //=-=-=-=-=-=-=Configuration=-=-=-=-=-=-= set .npc$, "[^0000FFEnchant Expert^000000]"; // NPC Name set .pric, 1; // Price set .efet, 154; // Effect Number set .item, 6242; // Item Number set .uit$, "5137";// Item List Alice Doll [1] set .perc, rand(50,80); // Percent /*18603(Black Devil Mask), Not included because it wasn't in my DB*/ /*2286 Unslotted version of 18507*/ /*2203 Unslotted version of 2204*/ /*2201 Unslotted version of 2202*/ //=-=-=-=-=-=-=-=-Skorm-=-=-=-=-=-=-=-=-= }
  6. is ur server have this command? try this The default setting, 'atcommand_enable_npc', is defined in 'conf/battle/gm.conf'.
  7. before i used this but dont know how to insert this in the script. someone do it for before.. disable_command; enable_command; then try this add. OnPcLoginEvent: if( #confirmpw == 1) goto L_check; //setoption 0x40,1; setoption 0x2000,1; // Ruwach pcblockmove getcharid(3),1; disable_command; sc_start SC_FREEZE,1000000,10; sc_start SC_STUN,1000000,10; sc_start SC_SLEEP,1000000,10; sc_start SC_SILENCE,1000000,10; specialeffect2 135; L_confirm: set #confirmpass$,@newpass$; set #confirmpw,1; //setoption 0x40,0; enable_command; setoption 0x2000,0; // Ruwach sc_end SC_FREEZE; sc_end SC_STUN; sc_end SC_SLEEP; sc_end SC_SILENCE; percentheal 100,100; end; close2;
  8. thanks Cydh its working thank you soo much.
  9. why normal players can create new character with GM letter on their name? i cant find in config how to disable it...
  10. Problem 2 SOLVE thanks to breaker7 how about disable Extended Chat Box ( Increase max input chars of main /battle chatbox from 70 to 234 ) Extended Chat Room Box Extended PM Box
  11. guys why this error popup when i try to make a new character with they same name in my old char. EG: create 1st char name "TEST 1" then create again 2nd char name "TEST 1" then this DB error popup in my map-server. 1st name 1 space 2nd name 2 spaces ERROR:
  12. anyone know how to disable all portals in ordeal_1-1? cant find in warps folder.
  13. anyone can tell me what error is this> is htis a bug or something? this message pop-up in map-server [Warning]: Invalid menu selection on npc 110001701:'Seiyablem#prt' - got 1, valid range is [1..0] (player AID:xxxxxxx, CID:xxxxxxx, name:'xxxxxx')!
  14. like this? - script DiceTrigger -1,{ - script DiceTrigger -1,{ OnMinute00: if(gettime(3) % 2 == 0) donpcevent "DiceTrigger::OnDiceETrigger"; end; } OnInit: disablenpc "Dice Event Warper#dice"; disablenpc "Claim Your Prize!#dice"; end; you have two headear so remove the exist 1. red one
  15. anyone can tell me how to fixed this error? when i tried to craft silkrobe and i get INT+3 then when i tried to rightclick i get this error. ResourceError : Can't find file À¯ÀúÀÎÅÍÆäÀ̽º\item\¿ëÀÇ?¸Á?È«.bmp awts i though i post this in client side. wrong section sorry.
  16. i dont know if this is work just try to edit this at trunk/conf/map_msg.conf
  17. wow very fast reply, gonna try this thank you Emistry.
  18. anyone can make me a script that when GM login will be kick if he/she's not on the gm list. or online gm character on slot 0 can able to login.. i want to avoid all gm making another charater. thanks in advance
  19. anyone help me about this script.. when players broke emperium is not counting.. this is the script CREATE TABLE IF NOT EXISTS `breaker_ranking` ( `char_id` int(11) unsigned NOT NULL default '0', `name` varchar(30) NOT NULL DEFAULT '', `Class` smallint(6) unsigned NOT NULL default '0', `Count` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`char_id`) ) ENGINE=MyISAM; prontera,156,156,4 script Breaker Ladder 784,{ mes "#. ^5555FFName^000000 - Class - ^FF3355Emperium^000000"; query_sql( "SELECT `name`,`Class`,`Count` FROM `breaker_ranking` ORDER BY `Count` DESC LIMIT 10",.@Name$,.@Class,.@Count ); if( getarraysize( .@Name$ ) ){ for( set .@i,0; .@i < getarraysize( .@Name$ ); set .@i,.@i + 1 ) mes ""+( .@i + 1 )+". ^5555FF"+.@Name$[.@i]+"^000000 "+jobname( .@Class[.@i] )+" - ^FF3355"+.@Count[.@i]+"^000000"; }else{ mes "No Record Found."; } close; OnInit: setarray .mvp_list[0],1288; // Emperium for( .@i = 0; .@i < getarraysize( .mvp_list ); .@i++ ) setd( ".mvp_"+.mvp_list[.@i] ),1; OnMinute00: query_sql( "SELECT `name`,`Class`,`Count` FROM `breaker_ranking` ORDER BY `Count` DESC LIMIT 1",.@Name$,.@Class,.@Count ); delwaitingroom; waitingroom ""+.@Name$+" : "+.@Count+" emp",0; end; OnNPCKillEvent: if( getd( ".mvp_"+killedrid ) ) query_sql( "INSERT INTO `breaker_ranking` SET `char_id`='"+getcharid(0)+"',`name`='"+strcharinfo(0)+"',`Class`='"+Class+"',`Count`='1' ON DUPLICATE KEY UPDATE `Count`=`Count`+1" ); end; } SOLVED: i make it like this //In guild/agit_main.txt add after OnAgitBreak: // doevent "Breaker Ladder::OnBreakEmp"; CREATE TABLE IF NOT EXISTS `breaker_ranking` ( `char_id` int(11) unsigned NOT NULL default '0', `name` varchar(30) NOT NULL DEFAULT '', `Class` smallint(6) unsigned NOT NULL default '0', `Count` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`char_id`) ) ENGINE=MyISAM; prontera,156,156,4 script Breaker Ladder 784,{ mes "#. ^5555FFName^000000 - Class - ^FF3355Emperium^000000"; query_sql( "SELECT `name`,`Class`,`Count` FROM `breaker_ranking` ORDER BY `Count` DESC LIMIT 10",.@Name$,.@Class,.@Count ); if( getarraysize( .@Name$ ) ){ for( set .@i,0; .@i < getarraysize( .@Name$ ); set .@i,.@i + 1 ) mes ""+( .@i + 1 )+". ^5555FF"+.@Name$[.@i]+"^000000 "+jobname( .@Class[.@i] )+" - ^FF3355"+.@Count[.@i]+"^000000"; }else{ mes "No Record Found."; } close; OnInit: OnMinute00: query_sql( "SELECT `name`,`Class`,`Count` FROM `breaker_ranking` ORDER BY `Count` DESC LIMIT 1",.@Name$,.@Class,.@Count ); delwaitingroom; // waitingroom "TOP 1: "+.@Name$+" ( "+jobname( .@Class )+" ) : "+.@Count+" emp",0; // show jobs waitingroom ""+.@Name$+" : "+.@Count+" emp",0; end; OnBreakEmp: query_sql( "INSERT INTO `breaker_ranking` SET `char_id`='"+getcharid(0)+"',`name`='"+strcharinfo(0)+"',`Class`='"+Class+"',`Count`='1' ON DUPLICATE KEY UPDATE `Count`=`Count`+1" ); end; }
  20. @ tlacson7 you cant avoid that one, even if 5 friends join the event without the party they can use team play on LMS.
  21. anyone can help me if you kill/break the emperium name, char, points will insert to this sql. CREATE TABLE IF NOT EXISTS `breaker_ranking` ( `char_id` int(11) unsigned NOT NULL default '0', `name` varchar(30) NOT NULL DEFAULT '', `Class` smallint(6) unsigned NOT NULL default '0', `Count` int(11) unsigned NOT NULL default '0', PRIMARY KEY (`char_id`) ) ENGINE=MyISAM;
  22. hello, im using latest rathenaGIT and my players can use gm name. eg: player name GM namehere how to disable this? this is my char.conf // Allow or not identical name for characters but with a different case (upper/lower): // example: Test-test-TEST-TesT; Value: 0 not allowed (default), 1 allowed name_ignoring_case: no // Manage possible letters/symbol in the name of charater. Control character (0x00-0x1f) are never accepted. Possible values are: // NOTE: Applies to character, party and guild names. // 0: no restriction (default) // 1: only letters/symbols in 'char_name_letters' option. // 2: Letters/symbols in 'char_name_letters' option are forbidden. All others are possibles. char_name_option: 1 // Set the letters/symbols that you want use with the 'char_name_option' option. // Note: Don't add spaces unless you mean to add 'space' to the list. char_name_letters: abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 sorry for my poor english. please move this wrong section sorry.
  23. bump @ Freebies solve help me about pvp script can you?
×
×
  • Create New...