-
Posts
761 -
Joined
-
Last visited
-
Days Won
19
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by crazyarashi
-
4144's Nemo Client is neat for newer clients :))
-
Error [string "buf"]: 48: attempt to index field `? '(A nil value)
crazyarashi replied to halfman's question in General Support
That's way old and need old resources. zackdreavers translations is for later clients -
Big thanks! going to try it out :))
-
i used only once but it worked fine :))
-
Error [string "buf"]: 48: attempt to index field `? '(A nil value)
crazyarashi replied to halfman's question in General Support
What client date are you using? -
Error [string "buf"]: 48: attempt to index field `? '(A nil value)
crazyarashi replied to halfman's question in General Support
Use proper translation files for your client. Zackdreaver Translation -
OnMinionSummon: [email protected]_id = 1002; [email protected]_count = 20; monster "prontera",255,55,"Pink Evil Minions",.minion_id,.minion_count,strnpcinfo(0)+"::OnMinionKill"; for ([email protected] = 0; [email protected] < .minion_count; [email protected]++){ .gid[[email protected]] = [email protected][[email protected]]; //= store data } Good day rathena, I have a question regarding getunitdata. I want to summon a multiple monster and get their data later on. ( specifically the x and y) during the KillEvent Tried several ways to get the data and yet failed. hopefully anyone can enlighten me on what to do. Thanks in advance
-
Double check your mysql setup :))
-
Well sadly these are hardcoded in the client thus making it very hard to change/add
-
prontera,255,55,4 script alg_teleporter 123,{ if(Zeny >= .warp_fee){ warp "gld2_ald",0,0; end; } mes "- Not Enough Zeny -"; mes "- Come back when you have "+.warp_fee+" Zeny -"; close; OnHour23: OnHour09: OnHour15: OnHour20: enablenpc "alg_teleporter"; end; OnHour10: OnHour16: OnHour21: OnHour00: mapwarp "gld2_ald","SavePoint",0,0; disablenpc "alg_teleporter"; end; OnInit: .warp_fee = 30000; disablenpc "alg_teleporter"; end; }
-
- script Dynamic_Drops -1,{ OnNPCKillEvent: if( strcharinfo(3) == .map$ ){ if( killedrid == .killed_id ){ flks++; announce "Points +1 ["+ f1ks +"/5]",3; } if( f1ks >= 5 ){ flks = 0; sc_start sc_INCREASEAGI, 360000,10; sc_start sc_BLESSING, 360000,10; [email protected] = rand(1,2); if([email protected] == 1){ dispbottom "You got the first prize on the Roulette!"; getitem 2285,1; } else { announce "You got the second prize on the Roulette!"; getitem 16707,1; } } } end; OnInit: .map$ = "prontera"; .killed_id = 1002; end; } you're wrong in the rand line. set [email protected] rand (1,2){ -> set [email protected], rand(1,2);
-
Custom Drop from MVP, VIP get double drop
crazyarashi replied to diamondhole's question in Script Requests
function CustomRateCard { if(vip_status(VIP_STATUS_ACTIVE)) [email protected] = 5000; else [email protected] = 10000; if( killedrid == getarg(0) && rand( [email protected] ) <= getarg(2) ){ getitem getarg(1),1; } return; } please use a codebox. -
provide information how you duplicated the shop so we can help you :))
-
you can just edit yours in your grf with grf editor. just find the location of the icons you want to remove :))
-
yeah so far out of all the given vps provider only ovh provides a ddos protection ... If you're going for an asia geolocation it doesnt have that choices. just find the APAC VPS in OVH
-
I don't know much about alibabacloud and linode maybe its good or so. but don't go Vultr.
-
Using a singapore VPS would suit your geolocation. Both OVH and DigitalOcean have a Singapore Geolocation, you might aswell take a look at it :))
-
Jellopy XD most misc drops in RO are just for selling purpose actually, so just browsing the misc item will give you the idea already.
-
Download a clean client, it seems that you're editing a diffed client already.
-
Kill 20,000 monsters to activate World Boss quest
crazyarashi replied to dikapramantya's question in Script Requests
prontera,255,55,4 script World Boss 123,{ [email protected]_count = (.monster_kill_requirement - $world_boss_counter); mes "[ World Boss ]"; mes "Status :" +($world_boss_active == 1?"^00FF00Active^000000":"^FF0000Inactive^000000"); mes "Kill Remaining - [ ^0000FF"[email protected]_count+"^000000 ]"; mes "============================="; mes "Reward:"; mes "<ITEM>World Boss Reward<INFO>501</INFO></ITEM>"; end; OnNPCKillEvent: if($world_boss_active == 1) end; $world_boss_counter += 1; if($world_boss_counter == .monster_kill_requirement){ donpcevent "World Boss::OnSummon"; } end; OnSummon: $world_boss_active = 1; monster "prontera",255,55,"World Boss",1002,1,"World Boss::OnBossKill"; end; OnBossKill: $world_boss_active = 0; $world_boss_counter = 0; getitem 501,1; end; OnInit: .monster_kill_requirement = 100; freeloop(1); while(1){ [email protected]_count = (.monster_kill_requirement - $world_boss_counter); waitingroom "Kill Left : ["[email protected]_count+"]",0; sleep 1000; //= 1 Second Refresh delwaitingroom; } freeloop(0); end; } Here a simple base :)) -
recheck your char/map server configuration.
-
Download the luadec compiler in the rathena downloads area
-
I think there is no reason to hide the system folder. If you want it uneditable just compile the lua to lub for encryption.
-
Client 2018 can't read encrypted GRFs
crazyarashi replied to Gorder's question in Client-side Support
Are you sure you set it up well? Like trying to run the client without encryption first and worked. or try sending a screenshot of error maybe we'll get the hint of idea what is your error. -
Fix hairstyle can't over 29 for 2017+ client
crazyarashi replied to jchcc's topic in Client Releases
Well it old clients is different from new client so don't expect it to work in newer clients unless there is an update in nemo. :))