Dastgir
Script Developers-
Content Count
3805 -
Joined
-
Last visited
-
Days Won
250
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Dastgir
-
I don't understand why you used .@fbshare and .fbshare :/ prontera,150,150,1 script ShareYourInfo 57,{if(#ShareAgain <= gettimetick(2)){ mes "[FB Share]"; mes "Click on the Link to Share your Data to FB"; mes "<URL>Click Here to Share<INFO>www.facebook.com/sharer/sharer.php?u="+ (.link$) +"?char="+getcharid(0)+"</INFO></URL>"; next; sleep2 10000; set #CASHPOINTS, #CASHPOINTS + 100; dispbottom "You received 100 CASHPOINTS for helping advertising the game"; set #ShareAgain,gettimetick(2)+86400;}mes "[FB Share]";mes "Please wait 24 hours to help advertise our server again thank you!";close;OnInit:.link$ = "best-ro.vylowgaming.net/fbshare/"; //Trailing with "/"end;} Change "#ShareAgain" to "ShareAgain" if you want to make the timer as per character, currently, if you use the share, that Account won't be able to share until next 24 hours.
-
If you are using old Hercules, you should not have last "," Also the plugin in the 1st post is outdated, heres a updated one #include <stdio.h>#include <string.h>#include "../common/HPMi.h"#include "../map/clif.h"#include "../map/atcommand.h"#include "../map/script.h"#include "../map/pc.h"#include "../common/HPMDataCheck.h"HPExport struct hplugin_info pinfo ={ "@dance", // Plugin name SERVER_TYPE_MAP,// Which server types this plugin works with? "0.1b", // Plugin version HPM_VERSION, // HPM Version (don't change, macro is automatically updated)};ACMD(dance){int msg;msg = rand()%9;switch(msg){ case 0: case 1: case 3: case 5: case 7: case 9: clif->specialeffect(&sd->bl, 400, ALL_CLIENT); if (msg==0 || msg==1) {clif->specialeffect(&sd->bl, 413, ALL_CLIENT);} else if(msg==3){clif->specialeffect(&sd->bl, 415, ALL_CLIENT);} else if(msg==5){clif->specialeffect(&sd->bl, 458, ALL_CLIENT);} else if(msg==7){clif->specialeffect(&sd->bl, 501, ALL_CLIENT);} else{clif->specialeffect(&sd->bl, 550, ALL_CLIENT);} break; case 2: case 4: case 6: case 8: clif->specialeffect(&sd->bl, 300, ALL_CLIENT); if (msg==2){clif->specialeffect(&sd->bl, 414, ALL_CLIENT);} else if (msg==4){ clif->specialeffect(&sd->bl, 426, ALL_CLIENT); } else if (msg==6){ clif->specialeffect(&sd->bl, 466, ALL_CLIENT); } else { clif->specialeffect(&sd->bl, 540, ALL_CLIENT); } }return true;}/* Server Startup */HPExport void plugin_init (void){ clif = GET_SYMBOL("clif"); atcommand = GET_SYMBOL("atcommand"); script = GET_SYMBOL("script"); skill = GET_SYMBOL("skill"); addAtcommand("dance",dance);} If using old version of hercules. //====================================================//== Topic Discussion ================================//== http://herc.ws/board/topic/549-introducing-hercules-plugin-manager///====================================================//== Description =====================================//The plugin system allows you to create customized scripts //outside of the source. These scripts won't conflict with any //future source updates - think of it as a /conf/import/ for the source. //==================================================== /* --------------- Format ---------------After you have listed your plugin(s) in "quotations", you need to put in a comma, to separate the plugins.-----------------------------------------plugins_list: [ "example", "other",]-----------------------------------------Please note that your scripts need to be savedin the .c (source code) extension and placed in the /src/plugin/ folder.-----------------------------------------*/plugins_list: [ /* Enable HPMHooking when plugins in use rely on Hooking */ "dance" //"db2sql", //"sample", //"other",] Else the Mhalicot plugins.conf would work.
-
Change the Upper field. Normal jobs: 0x01 (1)Upper jobs: 0x02 (2)Baby jobs: 0x04 (4)Third jobs: 0x08 (8)Upper Third jobs: 0x10 (16)Baby Third jobs: 0x20 (32) Either Change "Upper" Value to 7 or 0x07(if want in hexadecimal)
-
Thats for FullClient, The link in the post is for patch, the patcher connect to that site to download the patches, (and Still I can login without any user and pass)
- 2 replies
-
- patch site
- kro patch
-
(and 3 more)
Tagged with:
-
while(input(.@novice,1,1000)) { mes ""+.npc_name$+""; mes "Please re-think about your choice. It's not making any sense!"; close; } mes ""+.npc_name$+""; mes "So..You want to get "+.@novice+" Novice Potion?"; next; if(countitem(JELLOPY_ID) >= (.@novice*2)){ mes ""+.npc_name$+""; mes "Here you go!"; delitem JELLOPY_ID,.@novice*2; getitem NOVICE_POTION_ID,.@novice; next; mes ""+.npc_name$+""; mes "Come back if you have more!"; close; } you can also set configuration(variables) for that multiplier...
-
Its clientSide Error Get MsgString for respective client (https://github.com/ROClientSide/Translation/tree/master/Data/MsgString) If you are using from (https://github.com/ROClientSide/Translation/tree/master/Data/) , it has reversed order for 2 lines, and is used for newer clients..
-
Show your plugins.conf
-
eh ? i have make the svn up. should i do manually ? yes, if you do update by command and have custom src modifications there will be conflicts and it will not change some files and your src you become a mess but i dont have any custom mod sir ? how should i update ? If using svn svn up If using Git Check http://herc.ws/board/topic/152-obtaining-hercules/ (Post #3 and Post #4) If downloaded a zip from github, i fear that you have to manual patch, or download new from git/svn and apply your edits,
-
if(baselevel >= 5 && novice_ground == 1) { mes ""+.npc_name$+""; mes "Good job Leveling up! Go on! Take one item from my stash! It's on me!"; next; .@menu$ = ""; for (.@i=0; .@i<getarraysize(.items); .@i++){ .@menu$ = (.@menu$)+""+getitemname(.items[.@i])+":"; } .@menu$ = (.@menu$)+"Cancel"; .@item_selected = select(.@menu$); if (.@item_selected > getarraysize(.items)){close;} next; mes ""+.npc_name$+""; mes "You've selected ^FF0000"+getitemname(.items[(.@item_selected)-1])+"^000000."; mes "Are you sure?"; next; switch(select("Yes:No")){ case 1: mes ""+.npc_name$+""; mes "Here you go!"; getitem .items[(.@item_selected)-1],1; set novice_ground, 2; close; case 2: mes ""+.npc_name$+""; mes "Come back once you've decided!"; close; } } And at OnInit: OnInit: setarray .items[0],13040,13415,1545,13041; end;
-
Don't diff client with "Resize Fonts".
-
If announce is not at all showing, please make sure he map you are warping to have "loadevent" mapflag, since you are using onpcloadmapevent. If text is not resizing, then be sure that you havent diffed with resize font diff.
-
wa i thought it was free. as per Dast PVP only paid. , I told "Euphy's have all events except the PvP and is a paid script posted on rA." That means Euphy's Have All the Events Except the PvP AND Euphy's Event Script is PAID. Maybe wait for someone to script this and release for free.
-
Hmm.. Nice Designs, Although http://i.imgur.com/yNCCW3A.png is having some grammer problems, it should have (Dont Share Your Password!)
-
where? and does Euphy has a PVP Like i mentioned on my post? i saw some server have that NPC and i think its every every helpfull. thats why i add some PVP event Euphy's have all events except the PvP and is a paid script posted on rA.
-
Any news about official new script? Major commits in the next week or so ;3 +1, Hope to see those major commits soon..
-
Check the Ping. If Ping < 200, no lagg(also depends on player connection speed ).. if Ping > 200, it might lagg.
-
Its nice to see such old server still alive (unlike new servers, which dies in 1-3 months.)
-
Thank you very much for replying. I'm wondering what is the differences of this what i am requesting and this one: http://rathena.org/board/topic/66826-request-to-update-this-code/ you are requesting character name color change, while that topic is about message color change
-
you mean for http://roclientside.asia:12000/index.php?se=1&type=1&t=2&show=1 ? you can register new user or use user: demo pass: demo Or you can share your own itemInfo also, so we can accelarate the translation. No, for: https://github.com/ROClientSide/Translation What you are trying to do? you should be able to pull the repo without user and password requirements. (anyways, you can register your own username on github site : http://github.com/ )
-
you mean for http://roclientside.asia:12000/index.php?se=1&type=1&t=2&show=1 ? you can register new user or use user: demo pass: demo Or you can share your own itemInfo also, so we can accelarate the translation.
-
Official iRO KO/OB Job change quest!
Dastgir replied to Relzz's topic in Quest, Shops, Functions & Algorithms Releases
If you see commits https://github.com/M45T3Ryu/KO-Proyect/commits/master , you can come to know M45T3R started the project and stopped updated 10 months ago, and I begin to implement New Tests/Dialogs/Formulas Based on iRO Testings that I did. Well its ok , if you clean it.. -
Download data.grf not rdata.grf Can download from here too: http://www.nickyzai.com/?p=kro
-
Well, mod approved the file., the v1.1, I already tested and its working according to the description provided by you, hope I made the same (as you wanted). Ranking System is also altered, where now it checks MasterRebirth First, then NormalRebirth. So if MasterRebirth is same, it goes for NormalRebirth Checks, and gives rank accordingly. Awesome. You've upload the script to work with new emulators. Could you put the M.Reset System on my script? (to work with old emulators). I'm trying to do it but I'm not an expert about scripts. (I'm trying to see your modifications, this way I'll learn how to make it work on new emulators and old). I actually never tried to see a Script Tutorial. I know pretty much, but about new emulators I know almost nothing. Script: http://pastebin.com/6d3keH9k Thank you. I really appreciate your work. @edited: I've changed all the @i, but now it's saying "Undeclared function '@rebirth_type', line 46. Maybe Try this: http://upaste.me/226e1186830e155f2
-
Ahh, Thanks, (Why its not "bg" instead "battlegrounds"? others are having same name.... like map=GET_SYMBOL("map")... )