Mhalicot
Community Contributors-
Content Count
1971 -
Joined
-
Last visited
-
Days Won
37
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Mhalicot
-
can I ask? why there is an empty #include in there? is it typo error? can you remove it in your code and recompile @autopots check if still have error? if theres error try to use autotpots
-
can you share me your codes? i really can't reproduce your error
-
No one can able to help you if you only provide a piece of ScreenShot.. try to explain it wider... Goodluck
-
// Chance:// 100 = 100% to reduce from 8 ~ 9 for example for this line from 20% reduce to 10% from 10% reduce to 1% //Nearly imposible
-
Cant reproduce. Make sure you are using version 4.1 Im using 4.1 now this Im sorry but I cant reproduce, I'm using the latest hercules version and autopots v4.1 it doesn't show any error upon compiling and I can use the command in game..
-
Emulator is giving "Warning" on some items to connect
Mhalicot replied to Tutti's question in Database Support
The warning tells you the answer already check your item_packages.conf scan and remove does name. -
Works for me but the background of the login is black how to fix this. Use NEMO patcher and patch Restore Login window
-
Would you like to remove this npc to mount the item "Rein"
Mhalicot replied to Tutti's question in Script Support
Just add the script after checkmount if(hascashmount()){setcashmount();} -
Not sure, maybe two files have different grf.
-
Cant reproduce. Make sure you are using version 4.1
-
have you modify anything? is your kro is updated? make sure that the items in your roulette_db.conf are correct.
-
Try using @monsterignore. @monsterignoreMakes you immune to attacks (monsters/players/skills cannot target/hit you).
-
Hello, It will be awesome if you will share your solution here and please take time to read our Hercules Forum Rules.
-
can reproduce. make sure that you compile the plugins without error. Update: 4.1 Fixed Compiling Error and Update to latest Revision e9d6955 [Mhalicot]
- 152 replies
-
- afk atcommand
- @afk
-
(and 2 more)
Tagged with:
-
Cant reproduce, make sure that you are using 1.4
- 64 replies
-
- autoattack
- @autoattack
-
(and 3 more)
Tagged with:
-
^ I hope you read my response, in that case you must set checkmount() == MOUNT_MADO
-
Hello, for your information checkriding has been deprecated on this commit c6f102e Insted of using checkriding, use. checkmount() instead. for more information about deprecated script, refer to this link. Deprecation of legacy script command
-
hi annie. how to disable Boss cards? i tried it at map_zone_db but error. how can i disable boss cards? What error is it? make sure you type it correctly. disabled_items: {//Both examples below disable apple (id 501)//Apple: true//ID501: true
-
I believe its been discussed before. @reloadmapcache
-
you need to look at picklog table: type field mysql limit, you need to offset to show them all Not Tested Samplequery last 20 items that you sent in storage sample set .@nb, query_logsql("SELECT nameid, amount FROM picklog WHERE type='R' AND amount<0 AND char_id=150000 ORDER BY time DESC LIMIT 20",.@item,.@amount); for(set .@i,0; .@i < .@nb; set .@i,.@i+1) mes .@item[.@i] +" "+ .@amount[.@i]; *set <variable>,<expression>;*set(<variable>,<expression>)This command is deprecated and it shouldn't be used in new scripts, exceptsome special cases (mostly, set getvariableofnpc). Use direct valueassignment instead. so for example: instead of usingset .@nb, query_sql("select name,fame from `char` ORDER BY fame DESC LIMIT 5", .@name$, .@fame);use.@nb = query_sql("select name,fame from `char` ORDER BY fame DESC LIMIT 5", .@name$, .@fame);
-
how to adjust the window of browser hexed
Mhalicot replied to estoudegreve's question in Script Support
Post back your question then response with the solution sometimes reading Hercules Forum Rules can help you understand what to do. -
I think the best solution for that is to make another mob that has the same sprite of Green Maiden then remove the drop. anyways lets wait for others response if it can do without editing mob_db
-
party vs party (blue team v.s. red team)
Mhalicot replied to Takumirai's topic in PvP, WoE, GvG, & Battleground Releases
If you will post more information about why, maybe someone can answer your question.. -
How change skills of Homunculus custom?
Mhalicot replied to OmarAcero's question in Client-Side Support
Make sure for every change you made you re-compile your server or else changes will not work.. -
Guide setting up 2013+ Client for Hercules
Mhalicot replied to zackdreaver's topic in Client-Side Releases
There are some helpful guide in our Blog like Crash Course: Scripting 101-A, Crash Course: Scripting 101-B, Scripting Academy, etc.. try to explore using search.. Good Luck