Jump to content

quesoph

Members
  • Content Count

    562
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by quesoph

  1. if( sc && (sc->data[SC_CLOAKING] )) { status_change_end(&sd->bl,SC_CLOAKING, INVALID_TIMER); //clif->skill_fail(sd,MO_EXTREMITYFIST,USESKILL_FAIL_LEVEL,0); return 0; }
  2. Change this skill->blockpc_start (sd, MO_EXTREMITYFIST, 0);toskill->blockpc_start (sd, MO_EXTREMITYFIST, 3000); @edit or use this instead.
  3. https://github.com/HerculesWS/Hercules/blob/master/src/map/skill.c#L6189 .../src/map/skill.c
  4. Its hard coded in the client. Here's the hex string if you want to change it. from 2013-08-07. 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 53 41 4C 45 20 4C 49 53 54 20 20 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D 3D
  5. here: http://herc.ws/board/topic/2556-2013-08-07-full-client-download/ 2013-08-07 seems stable. check here: http://herc.ws/board/forum/29-client-side-releases/
  6. quesoph

    Weapon Effect

    show your item script.
  7. - script dualclientkicker -1,{ //by skormOnPCLoadMapEvent: set .@charmap$, strcharinfo(3); if(!compare(.tmp$,.@charmap$)) end; //set .@len, query_sql("SELECT DISTINCT `account_id` FROM `char` WHERE `account_id` IN (SELECT `account_id` FROM `login` WHERE `last_ip` = (SELECT `last_ip` FROM `login` WHERE `account_id`="+getcharid(3)+")) AND `online` <> 0;",.@a); set .@len, query_sql("select account_id from `char` right join login on login.account_id = `char`.account_id where `char`.online = 1 and login.last_ip = '"+ getcharip() +"'",.@a ); //Annieruru Addition. if(.@len-1) { for(set(.@d,0);.@d<.@len;set(.@d,.@d+1)) { getmapxy(.@map$,.@x,.@y,0,rid2name(.@a[.@d])); if(.@charmap$==.@map$&&rid2name(.@a[.@d])!=strcharinfo(0)) { dispbottom "Duel accounts not allowed in WOE."; warp "geffen",0,0; // change this. to atcommand "@jail "+strcharinfo(0); } } } end; OnInit: setarray .maps$ , "aldeg_cas01", "gefg_cas01", "payg_cas01", "prtg_cas01"; set .lens , getarraysize(.maps$) ; for(set(.a,0);.a<.lens;set(.a,.a+1)) { setmapflag .maps$[.a], mf_loadevent ; set .tmp$ ,.tmp$+.maps$[.a]+","; }}
  8. prontera,150,150,5 script asdf 100,{if (select("Yes~ Let's start now.:No, I'll be back later.") == 1) { mes "This is ==1"; // Yes~ Let's start now. close;} mes "This is ==2"; //No, I'll be back later. close;} why not use something like this: switch (select("Yes~ Let's start now.:New custom here.:No, I'll be back later.")) { case 1: if(checkquest(4000) == -1) setquest 4000; mes "[Hunter Sherin]"; mes "Listen carefully to the scenarios I describe. When I ask a question, you choose an answer. Pretty simple, don't you think?"; next; mes "[Hunter Sherin]"; mes "I just want to know how you think about life, and why you want to become a Hunter, so there's no need to be nervous."; close; case 2: //New custom here case 3: mes "[Hunter Sherin]"; mes "Okay..."; mes "Come back"; mes "when you're ready~"; close;} I always use switch select if i have 3 or more items in one menu. if select if two.
  9. quesoph

    Queue System

    This is my example. OngreenDead:OnblackDead:OngreenQuit:OnblackQuit: if (getcharid(4)) bg_leave; set .start, 0; warp "SavePoint",0,0; end;
  10. quesoph

    Queue System

    try to add if (getcharid(4)) bg_leave;
  11. quesoph

    Queue System

    set .green, createbgid( "izlude",136,117, strnpcinfo(0)+"::OngreenQuit", strnpcinfo(0)+"::OngreenDead" );set .black, createbgid( "izlude",136,117, strnpcinfo(0)+"::OnblackQuit", strnpcinfo(0)+"::OnblackDead" ); so... ??? ( I am not really sure ) OngreenDead:OngreenQuit:OnblackQuit:OnblackDead: if (getcharid(4)) bg_leave; warp "SavePoint",0,0; end;
  12. try this: [Button:Start]Default='images/start1.bmp'OnHover='images/start2.bmp'OnDown='images/start3.bmp'Left=1Top=2 or convert your button to png. /swt
  13. https://github.com/HerculesWS/Hercules/blob/master/npc/custom/jobmaster.txt#L182 change set .ThirdClass,1; // Enable third classes? (1: yes / 0: no) to set .ThirdClass,0; // Enable third classes? (1: yes / 0: no)
  14. Have you checked your ..system/itemInfo.lua/lub?
  15. check your sql-files/upgrades/ #1396893866ALTER TABLE `char` ADD COLUMN `uniqueitem_counter` bigint(20) NOT NULL AFTER `unban_time`;INSERT INTO `sql_updates` (`timestamp`) VALUES (1396893866);
  16. I think it should be bg = GET_SYMBOL("battlegrounds") ?
  17. If my .htacess is not producing any error, does it mean that my webhost is not reading it? # Cause I am using http://client.domainname.com/ErrorDocument 404 /index.phpasdfsafd I use asdfsafd to produce an error.. but It shows only white screen. If my webhost is not reading it what should I do ?.
  18. ^ compile dgbhelpplug.c first before adding it to plugins.conf.
×
×
  • Create New...

Important Information

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