Angelmelody
Members-
Content Count
772 -
Joined
-
Last visited
-
Days Won
23
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Angelmelody
-
dunno why all the images become golden frog photos
-
Need help on Toasty's WoE Controller
Angelmelody replied to Ragnar Lothbrok's question in Script Support
why not use [code] [/code] -
Help how to remove Demon of the sun, moon and stars
Angelmelody replied to classy5's question in General Server Support
pc.c find... then // it // if (pc->checkskill(sd, SG_DEVIL) && !pc->nextjobexp(sd)) // clif->status_change(&sd->bl,SI_DEVIL1, 1, 0, 0, 0, 1); //Permanent blind effect from SG_DEVIL. -
Becoz some different plugings hook the same functions and the latter loaded hookings will overwrite previous loaded hookings,so you should merge them into one hooking functions manually
-
Here is the explanation of the item_db.conf https://raw.githubusercontent.com/HerculesWS/Hercules/master/doc/item_db.txt
-
I think the set / get npc variable should put after enablenpc "BringMeEvent" or it would not work
-
you have to convert the conf file into the ANSI format and set the default_langueage to the same as your po filename
-
Hello help me on automatic prize giver for KoE
Angelmelody replied to nuna's question in Script Support
try this //////THISSSSSS ONEgetguildmember(getcastledata("guild_vs1", 1),2);for(.@i=0;.@i< $@guildmembercount;.@i++) getitem 30206,1,$@guildmemberaid[.@i];//////THISSSSSS ONE -
if(!checkweight(item id)) storeitem ... http://herc.ws/board/topic/2457-storeitem/
-
There's no such option, and if it has I didin't choose. sryy, I wrote the wrong word. the option is Increase attack display, if you choose that option ,your attck damage number can show above 32K
-
becoz you choose increase damage option when you diff your client
-
ansi chinese words were stored to UTF8 mysql db will become gibberish if you wnat to see correct chinese words, to set up your client connection encoding to ansi big5.
-
Do you mean item_db.conf ?
-
how I can add new gm command to my server
Angelmelody replied to Kid BaKa's question in General Server Support
you can also use bindatcmd like this - script asdfjkl -1,{OnInit: bindatcmd "localrecall", strnpcinfo(0)+"::Onwarp",60,99; end;Onwarp: getmapxy(.@m$,.@x,.@y,0); mapwarp .@m$,.@m$,.@x,.@y; end;} -
how to make all items 4 slot (exccept shield)
Angelmelody replied to Sasuke Uchiha's question in Database Support
insert into this line click if(id.equip > 0 && id.equip != 32 && id.equip != 136 ) id.slot = 4; -
I had already enabled sso packet when diff my client , but dunno why my last_mac always goes to 0
- 41 replies
-
How to stop MVPs from killing GMs
Angelmelody replied to Eviang's question in General Server Support
you can try @battleignore command -
.@md_name$ = "Endless Tower";would have to become.@md_name$ = _("Endless Tower"); ok now its working fine...ty.
-
in EndlessTower.txt switch(select("Generate dungeon "+.@md_name$+":Enter the dungeon:Return to Alberta:Cancel")) { How can I make the string of var .@md_name$ work well?
-
Hercules had already improved map zone to unequip the blocked item so you dont need this patch now https://github.com/HerculesWS/Hercules/commit/33a43ec41542e25ee180bda430a3de4654a46b10
-
set .@num, atoi("""+getarg(0)+"""); change to set .@num, atoi(getarg(0)+"");
-
ismounting() ---> hascashmount() checkriding() ---> checkmount() == MOUNT_PECO
-
you can add a new group for those players if(group = n) ......
-
- script afkwoe -1,{OnInit: .timetocheck = 30; //Seconds after which idle is checked. .idle_time = 30; //Idle time in seconds, from which one can be warped.end;OnPCLoginEvent: addtimer .timetocheck*1000,strnpcinfo(3)+"::OnCheckAFK"; end; OnCheckAFK: addtimer .timetocheck*1000,strnpcinfo(3)+"::OnCheckAFK"; if(checkidle() >= .idle_time && getmapflag(strcharinfo (3), mf_gvg)) { dispbottom "The Police, has detected him as bot because you were in afk a long time during woe"; warp "SavePoint",0,0; end; }}
-
addtimer should be placed before that condition check