quesoph
Members-
Content Count
562 -
Joined
-
Last visited
-
Days Won
6
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by quesoph
-
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; }
-
Change this skill->blockpc_start (sd, MO_EXTREMITYFIST, 0);toskill->blockpc_start (sd, MO_EXTREMITYFIST, 3000); @edit or use this instead.
-
What OS are those?
-
After
-
https://github.com/HerculesWS/Hercules/blob/master/src/map/skill.c#L6189 .../src/map/skill.c
-
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
- 2 replies
-
- vending
- modification
-
(and 2 more)
Tagged with:
-
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/
-
show your item script.
-
- 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]+","; }}
-
some questions about adding a new custom selection
quesoph replied to Alexandria's question in Script Support
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. -
This is my example. OngreenDead:OnblackDead:OngreenQuit:OnblackQuit: if (getcharid(4)) bg_leave; set .start, 0; warp "SavePoint",0,0; end;
-
try to add if (getcharid(4)) bg_leave;
-
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;
-
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
-
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)
-
First post updated.
-
No preview.
-
Check athena-start
-
Have you checked your ..system/itemInfo.lua/lub?
-
here: http://heartbleed.com/
-
[SQL]: DB error - Field 'uniqueitem_counter' doesn't have a default value
quesoph replied to appealarms's question in Database Support
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); -
I think it should be bg = GET_SYMBOL("battlegrounds") ?
-
roBrowser - Ragnarok Online for Web Browsers
quesoph replied to KeyWorld's topic in Website Releases
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 ?. -
Re-Implement dbghelpplug.dll Windows Crash Dump
quesoph replied to Michi's question in Plugin Requests
^ compile dgbhelpplug.c first before adding it to plugins.conf.