Plugin Collections

@@Dastgir Yeah. I know. But it possible this plugin to get the coordinate of monster ? 
Possible, yes..

but I dont see a use of it in mapmoblist, because mapmoblist shows output as

Poring[1002]: 10

(Name[iD]: Count)

, so you want to display each and every co-ordinate?

 
@@Dastgir Yeah. I know. But it possible this plugin to get the coordinate of monster ? 
Possible, yes..

but I dont see a use of it in mapmoblist, because mapmoblist shows output as

Poring[1002]: 10

(Name[iD]: Count)

, so you want to display each and every co-ordinate?
@@Dastgir this command is very useful in playing event find the mushroom.. kill the poring.. so its good if GM know the coordinate of monster.

 
this command is very useful in playing event find the mushroom.. kill the poring.. so its good if GM know the coordinate of monster.
I rather write that in a script ... with getmobdata and retrieve the x,y coordinate of the monster ...because like find the correct poring, the names are so similar ...

and poring summoner, there are 2 types : correct and fake porings

its better to bindatcmd and a custom gm command to retrieve only the correct poring names

 
@@Dastgir

i got error on itemmap.c (even though it is success i can't use @itemmap command)

1>------ Build started: Project: itemmap, Configuration: Release Win32 ------
1>  itemmap.c
1>..srcpluginsitemmap.c(194): warning C4996: 'strcmpi': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strcmpi. See online help for details.
1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestring.h(245) : see declaration of 'strcmpi'
1>..srcpluginsitemmap.c(196): warning C4996: 'strcmpi': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strcmpi. See online help for details.
1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestring.h(245) : see declaration of 'strcmpi'
1>..srcpluginsitemmap.c(203): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestdio.h(325) : see declaration of 'sscanf'
1>..srcpluginsitemmap.c(211): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestdio.h(325) : see declaration of 'sscanf'
1>..srcpluginsitemmap.c(219): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestdio.h(325) : see declaration of 'sscanf'
1> Creating library ..pluginsitemmap.lib and object ..pluginsitemmap.exp
1>  Generating code
1>  Finished generating code
1>  itemmap.vcxproj -> D:DevelopingServersideChaos ROHerculesitemmap..pluginsitemmap.dll
========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========

 

 
Last edited by a moderator:
@@Dastgir i got error on itemmap.c (even though it is success i can't use @itemmap command) 1>------ Build started: Project: itemmap, Configuration: Release Win32 ------1>  itemmap.c1>..srcpluginsitemmap.c(194): warning C4996: 'strcmpi': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strcmpi. See online help for details.1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestring.h(245) : see declaration of 'strcmpi'1>..srcpluginsitemmap.c(196): warning C4996: 'strcmpi': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strcmpi. See online help for details.1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestring.h(245) : see declaration of 'strcmpi'1>..srcpluginsitemmap.c(203): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestdio.h(325) : see declaration of 'sscanf'1>..srcpluginsitemmap.c(211): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestdio.h(325) : see declaration of 'sscanf'1>..srcpluginsitemmap.c(219): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestdio.h(325) : see declaration of 'sscanf'1> Creating library ..pluginsitemmap.lib and object ..pluginsitemmap.exp1>  Generating code1>  Finished generating code1>  itemmap.vcxproj -> D:DevelopingServersideChaos ROHerculesitemmap..pluginsitemmap.dll========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ========== 
Thats wrong configuration of plugin, though it's just a warning...

You can do this to avoid these warning for plugin

Code:
Right-click project, select "Properties". Click "Build". Switch "Treat warnings as errors" from "All" to "Specific warnings" or "None".
 
@@Dastgir i got error on itemmap.c (even though it is success i can't use @itemmap command) 1>------ Build started: Project: itemmap, Configuration: Release Win32 ------1>  itemmap.c1>..srcpluginsitemmap.c(194): warning C4996: 'strcmpi': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strcmpi. See online help for details.1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestring.h(245) : see declaration of 'strcmpi'1>..srcpluginsitemmap.c(196): warning C4996: 'strcmpi': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _strcmpi. See online help for details.1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestring.h(245) : see declaration of 'strcmpi'1>..srcpluginsitemmap.c(203): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestdio.h(325) : see declaration of 'sscanf'1>..srcpluginsitemmap.c(211): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestdio.h(325) : see declaration of 'sscanf'1>..srcpluginsitemmap.c(219): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.1>   C:Program Files (x86)Microsoft Visual Studio 10.0VCincludestdio.h(325) : see declaration of 'sscanf'1> Creating library ..pluginsitemmap.lib and object ..pluginsitemmap.exp1>  Generating code1>  Finished generating code1>  itemmap.vcxproj -> D:DevelopingServersideChaos ROHerculesitemmap..pluginsitemmap.dll========== Build: 1 succeeded, 0 failed, 0 up-to-date, 0 skipped ========== 
Thats wrong configuration of plugin, though it's just a warning...You can do this to avoid these warning for plugin

Right-click project, select "Properties". Click "Build". Switch "Treat warnings as errors" from "All" to "Specific warnings" or "None".
theres no build category on the properties ..

and I just followed the steps according here http://herc.ws/wiki/Building_HPM_Plugin_for_MSVC

it already work the @itemmap command.

but is it okay to leave the warning?

I just forgot to insert something on the plugin.conf well

the  itemmap1 and itemmap2 isn't working.

 
Last edited by a moderator:
All Plugins updated to support new BattleConf Format

 
I found a bug in costumeitem. The skulls dropped from players on pvp appear as anonymous. The name of the killed player is no longer attached in it, or the charid is messed up, idk.

 
I'd like to suggest the addition of the @autoattack plugin, I'm having almost the same error as the user in the last post
default_tongue.png


 
I'd like to suggest the addition of the @autoattack plugin, I'm having almost the same error as the user in the last post
default_tongue.png
Updated and added, but have not tested it yet.

I found a bug in costumeitem. The skulls dropped from players on pvp appear as anonymous. The name of the killed player is no longer attached in it, or the charid is messed up, idk.
Fixed the bug , thanks for reporting
default_biggrin.png


 
@@Dastgir

the plugin is working almost 100% except by the fact that if you activate it and just change your position (warp, jump, go, etc) it asks for this missing sprite and act:

---------------------------
Error
---------------------------
Cannot find File : sprite\Àΰ£Á·\¸öÅë\¿©\¿ÁÅä¹öÆÐ½ºÆ®_¿©.spr
---------------------------
OK
---------------------------


and that is really weird because I see no reason for the client/code to do so
default_tongue.png


 
Hi @dastgir 

The warp hit Delay has a Bug.
if you are in PvP room and u died twice (Normally if you died twice inside PvP mapflag you will be automatically Warp out.) but in this case the attacker will keep on attacking (normal attack not skill) and the kill counter will keep on counting. 

it means even if the player is dead the attacker will keep on attacking and gained points because of the warp hit delay preventing the player to warp. (it loops since normal attack is does not stop.)

 
Just tried this now,

Extended Vending :

zjfn1x.png


and btw, do you have a whobuy plugin?
You misspelt the name of file...I do have it, I will upload when back to RO stuff.

 
Back
Top