Dastgir
Script Developers-
Content Count
3805 -
Joined
-
Last visited
-
Days Won
250
Content Type
Profiles
Forums
Downloads
Staff Applications
Calendar
Everything posted by Dastgir
-
Problem with script_rid2sd: fatal error ! player not attached!
Dastgir replied to Baps's question in Script Support
Rid means player. In your script, the OnInit was calling labels which needed player attached (mes/input/select needs player to be attached) While OnInit dont have any players attached.. So for menu selection, you need to put that at start of npc and not on OnInit -
What's problem with OnHour or OnClock? This is in suggestion section... So I disagree for it to be added to emulator, while this may be good as source/plugin release...
-
Seems like hourly reminder.. Use NEMO and diff with remove hourly reminder
-
You are using Gravity's ArtWork(maps/mobs/items) and a client made by Gravity.. While for small scale, i doubt if gravity would take action, but if you are planning this for very large player base.. You should be prepared...
-
If you are looking for whole new MMO, using RO client would be risky.. Gravity holds the copyrights...
-
Might be cloudflare, it might have detected some.kind of attacks from range of ip, and that included yours?You could contact some rA staff to get it solved...
-
Problem with script_rid2sd: fatal error ! player not attached!
Dastgir replied to Baps's question in Script Support
Remove if ((gettime(4) == 3 && gettime(3) == 21) || (gettime (4) == 6 && gettime(3) == 21)){ //Sub Routine S_HealerWoE si Mercredi ou Samedi 21h callsub S_HealerWoE; if ((gettime(4) == 3 && gettime(3) == 23) || (gettime (4) == 6 && gettime(3) == 23)){ //Sub Routine S_Healer si Mercredi ou Samedi 23h callsub S_Healer; } } else { //Sub Routine jour normaux callsub S_Healer; } And insert the same code after - script Healer#uni -1,{ (And an 'end;' after those statement) -
src/map/pc.c Find sd->subele[i] += val;Replace with sd->subele[i] += min(sd->subele[i]+val, 120); Find sd->subele[type2] += val; Replace with sd->subele[type2] = min(sd->subele[type2]+val, 120);
-
battle.c Find all lines containing *something here*long_attack_def_rate Replace with min(*something here*long_attack_def_rate, 85); e.g: damage -= damage * tsd->bonus.long_attack_def_rate / 100;Todamage -= damage * min(tsd->bonus.long_attack_def_rate,85) / 100;85 = max value(cap rate)Change according to your needs
-
With nemos "Enable Mailbox for all langtypes" patch it even works with 2014-10-22bRagexe. however, 2015 clients won't support it anymore I guess 2015 have rodex, which is mail system
-
ItemInfo.lub should be in System Folder outside the grf, in the RO folder...
-
Don't use Paypal,for Donations
-
prontera,150,150,5 script Teleporter 1_M_YOUNGKNIGHT,{ .n$ = "[ Teleporter ]"; mes .n$; mes "Please enter the Floor Number."; mes "==============================="; mes "List of Active Maps"; if (query_sql("SELECT id, name, level, status FROM npc ", .@id, .@name$, .@level, .@status)) { for (.@i = 0; .@i < getarraysize(.@status); .@i++) { if (.@status[.@i] == 1) { mes .@name$[.@i]; } } } next; input(.@mapList); for (.@i = 0; .@i < getarraysize(.@status); .@i++) { if ( .@mapList == .@level && .@status == 1 ) { switch(select(.@mapList)){ case 1: warp "prontera", 150, 155; break; case 2: warp "prontera", 150, 155; break; case 3: warp "prontera", 150, 155; break; case 4: warp "prontera", 150, 155; break; case 5: warp "prontera", 150, 155; break; default: mes "No Warp Location Specified"; close; } } } mes .n$; mes "Unable to find the Floor number. Please enter the Active Floors."; close; }
-
Uploaded new version
- 19 replies
-
- duplicate command
- duplicate script
- (and 3 more)
-
They don't support Extended ASCII characters, so move the file to any folder which does not contain Extended ASCII char, and then it would work fine
-
I receiver basic configuration to $150 O.o Basic is 150$Additional modules cost more....
-
Pretty much, it would be finding it in grf and not on data folder...
-
Been working on it since past 2-3 days, and Rankings are implemented completely(need to test off, but code is done)
-
Use "screen" command, you can search on Hercules Forum, on how to install and use screen
-
The file has been updated (see 1st post)
-
Replied. (Please allow atleast 1 day for me to check the PM's , i can't check it as soon as you send it xD)
-
post your plugins.conf