Dastgir
Script Developers-
Content Count
3805 -
Joined
-
Last visited
-
Days Won
250
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Dastgir
-
Nah, bindatcmd have gm level specification.Just changing to bindatcmd("buff",strnpcinfo(0)+"::OnBuff",99,99); Would do the job.
-
Remove set .br,getbattleflag("base_exp_rate")*2; set .jr,getbattleflag("job_exp_rate")*2;Change setbattleflag("base_exp_rate"), .br; setbattleflag("job_exp_rate"), .jr;To setbattleflag("base_exp_rate"), 1400; setbattleflag("job_exp_rate"), 1400;
-
@@Winterfox You can't direct cast string to int. E.g .@mobIds[.@i] = .@mobIdList$[.@i]; Should be .@mobIds[.@i] = atoi(.@mobIdList$[.@i]); (There's other place too, which needs to be changed)
-
It's having job bonuses + some stats bonuses too
-
mapannounce strcharinfo(PC_MAP), strcharinfo(PC_NAME) + " killed " + rid2name(killedrid) + " and earned " + .pvpRewardPoints +" Cash Point" + ((.pvpRewardPoints > 1)? "s" : "") + "."; To mapannounce strcharinfo(PC_MAP), strcharinfo(PC_NAME) + " killed " + rid2name(killedrid) + " and earned " + .pvpRewardPoints +" Cash Point" + ((.pvpRewardPoints > 1)? "s" : "") + ".",bc_map;
-
mapannounce ^ use that command
-
http://herc.ws/wiki/Building_HPM_Plugin_for_gcc Though I don't understand what you are trying to do... make sql Would do all required things.(even would compile plugins)
-
This error is OK.You are doing make plugin But correct is make plugins
-
Change select statement to .@select = select( implode( .warps$, ":" ) )-1; Since select() returns from 1 and array index starts from 0
-
make clean make sql ^ Above will compile plugins too.
-
Hmm.. Then you have to store account Id of each player into npc variable, and remove them as they die off, when one player is remaining , his account Id is in npc variable, just use attachrid, give item, and continue.(AFAIK, there's no area item commands)
-
Count users with getareausers.If its 1, enable the npc on that location and announce on area, to talk to npc to get Prize. So , once prize is taken, warp all of them out of map.
-
Try doingmake sql And post the logs(maybe there's some error you are missing to see)
-
Name coloring requires doing some reverse engineering with exe. Its not about the sources only. So, its not possible with this modification. correrct only possibel with Client Reverse Enging Share it
-
not work.. still error.. In which folder you are putting these wav files?Also screenshot of error please(maybe some different issue)
-
Those are bitwise, so adding all of them and putting that will result in disabling all. +1 for this.
-
Those are script command 12548(Buy_Market_Permit2) uses that command. Buying store will open a store in which you can state what you are buying, and other can view and sell it to you(opposite of vending) Similarly, search store will open a interface, in which you put item name, and it returns the vendors selling it.
-
What error on login/char/map server?
-
Get new data: https://github.com/ROClientSide/Translation
-
HackShield takes long to launch and maybe some protection issues?
-
configure: error: MySQL not found or incompatible
Dastgir replied to snowflake1963's question in General Server Support
apt-get install libmysqlclient-dev Also did you install MySQL? -
Job changer with free equips for your job
Dastgir replied to Neferpitou's question in Script Support
You need to say item_id's for jobs, we of course would not have that time to dig item for every job. -
https://github.com/HerculesWS/Hercules/blob/master/doc/whisper_sys.txt This should explain it. You can pm npc by NPC:Nancy And on that npc code, You need to have OnWhisperGlobal: label with dispbottom, and it will display message.