-
Posts
1282 -
Joined
-
Last visited
-
Days Won
41
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Skorm
-
setarray .@town_maps$, "prontera", "izlude", "geffen", "morroc"; if(getpartyleader(getcharid(1),2) == getcharid(0)) { getpartymember getcharid(1), 1; getpartymember getcharid(1), 2; for ( .@i = 0; .@i < $@partymembercount; .@i++ ) if ( isloggedin( $@partymemberaid[.@i], $@partymembercid[.@i] ) ) if(inarray(.@town_maps$, strcharinfo(3,$@partymembercid[.@i])) > -1) warp "pvp_y_1-2",0,0,$@partymembercid[.@i]; warpparty "Leader",0,0,getcharid(1),"pvp_y_1-2",1,1; }
-
Really questions like this should be asked on their own so it's easier for other users to find and search them... But as far as I know there is not. To add one that has an rid for an online character and would only run in that case you would add it in this statement. https://github.com/rathena/rathena/blob/master/src/map/guild.cpp#L983 npc_event_doall_id("OnLeaveGuild", account_id);
-
Sorry about that yeah you're right they were doing the same thing here is an updated version. - script warp_block -1,{ OnInit: bindatcmd "warp",strnpcinfo(3)+"::OnAtcommand",20,99; setarray .maps_from$[0], "guild_01", "guild_02"; // Maps they cannot warp from. setarray .maps_to$[0], "guild_01", "guild_02"; // Maps they cannot warp to. end; OnAtcommand: if(inarray(.maps_from$[0], strcharinfo(3))>-1) { message strcharinfo(0), "You can't open use warp here!"; end; } if(.@atcmd_numparameters) { if (inarray(.maps_to$[0], strtolower(.@atcmd_parameters$[0]))>-1) { message strcharinfo(0), "You can't warp to that map!"; end; } atcommand "@warp "+ implode(.@atcmd_parameters$, " "); } else atcommand "@warp"; end; }
-
@Origami - script warp_block -1,{ OnInit: bindatcmd "warp",strnpcinfo(3)+"::OnAtcommand",20,99; setarray .maps_from$[0], "guild_01", "guild_02"; // Maps they cannot warp from. setarray .maps_to$[0], "guild_01", "guild_02"; // Maps they cannot warp to. end; OnAtcommand: if(inarray(.maps_from$[0], strcharinfo(3))>-1) { message strcharinfo(0), "You can't open use warp here!"; end; } else if (inarray(.maps_to$[0], strcharinfo(3))>-1) { message strcharinfo(0), "You can't warp to that map!"; end; } if(.@atcmd_numparameters) atcommand "@warp "+ implode(.@atcmd_parameters$, " "); else atcommand "@warp"; end; } I'm just assuming your gms are group level 20 or above. Script is untested.
-
@Emistry Pretty sure you could just the the commands for it... It's like @size 1-3 or something.
-
@Get Backers Seems like you've got the right idea... It's strnpcinfo(0) not NPC_NAME though. - script LoginRewards#1 -1,{ OnPCLoginEvent: addtimer 3600000, strnpcinfo(0)+"::OnClaimReward"; end; OnClaimReward: dispbottom "You have been online 1 hour. Talk to Hourly Reward NPC to get your rewards!"; }
-
If the instance hasn't been destroyed you need to get the instance id... https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L9093 When you have the instance id you can then use the instance_mapname command and warp the play back to that instanced map. https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L9085 The full thing might look like... warp instance_mapname("prontera",instance_id(IM_PARTY)), 0, 0; This is if the player in question started an instance of the prontera map and we wanted to warp them back there.
- 1 reply
-
- 1
-
-
Need assistance debugging a Race to 99 script.
Skorm replied to mcNyj's question in Scripting Support
The scripting language is pretty primitive and while I don't have time to completely review your script associative arrays are not a thing. By just glancing and reading through what you've posted that's what I think you're trying to accomplish... There are some ways of making something similar though, but it is not recommended for multiple repetitions because it's cumbersome. Anyways... setarray .@names$, "greg", "frank", "ashe"; Works... setarray .@names, "greg", "frank", "ashe"; Doesn't Work. Furthermore: .@len = getarraysize(.@names$); for(.@a = 0; .@a < .@len; .@a++) { for(.@j = 1; .@j < 11; .@j++) { setd ".@player_"+.@names$[.@a]+"_things["+.@j+"]", .@j; } } In this example I create 3 new arrays from the .@names$ array above... .@player_greg_things = 1, 2, 3, 4, 5, 6, 7, 8, 9, 10; .@player_frank_things = 1, 2, 3, 4, 5, 6, 7, 8, 9, 10; .@player_ashe_things = 1, 2, 3, 4, 5, 6, 7, 8, 9, 10; I'm by no means saying this is best practice but it's something that can be done. I'm pretty sure... setarray getd(".@player_"+.@names$[0]+"_things"), 1, 2, 3, 4, 5, 6, 7, 8, 9, 10; Will also work to create an array like... .@player_greg_things = 1, 2, 3, 4, 5, 6, 7, 8, 9, 10; I could then access gerg's values like... mes "Greg's first value is... "+getd(".@player_"+.@names$[0]+"_things[0]"); Output would be Greg's first value is... 1 -
Is it possible to call cuttin on equip collection?
Skorm replied to naskahlec28's question in Scripting Support
Again Poring King is correct you should be able to call Cutin on any script that is connected to a player. You could call a function from the script section of your itemdb for the item that you want to use as your random animation thing. The function npc would then trigger the cutin animation. https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L1563 https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L7644 -
@Poring King is right but unfortunately for you @sacrox the script you've posted above isn't very dynamic and would require editing almost every line to create an effective last warp option.
-
https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L859 OnHour00: OnHour03: OnHour06: OnHour09: OnHour12: OnHour15: OnHour18: OnHour21: Use labels and commands like disablenpc and enablenpc to hide and display npcs.
-
switch(input(.@gpoint, 1, 30000)) { case -1: //Values less than 1 case 1: //Values greater than 30000 mes "Something went wrong!"; close2; cutin "",255; end; default: break; } if (.@gpoint > goldPoint) { mes "Sorry, you don't have any Gold"; close2; cutin "",255; end; } https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L1556
-
@Tokei made a mapcache editor that superseded weemapcache. If you really need weemapcache I have it. WeeMapCache.exe
- 1 reply
-
- 3
-
-
-
:< You don't have to go forever and stuff.
-
prontera,154,179,4 script summoner 100,{ if(countitem(512) > 500){ delitem 512,500; monster "prontera", 0, 0, "Poring", 1005, 1, strnpcinfo(0) + "::OnMobKilled"; monster "prontera", 0, 0, "Poring", 1115, 1, strnpcinfo(0) + "::OnMobKilled"; } else { mes "sorry you need 500 apple to summon"; close; } end; OnMobKilled: set .@amount, rand(1,5); //quantity of different items set .@whatItem, rand(.size); //Which item was chosen set .@amountItem, rand(1,10); //Quantity of item you will receive for (.@i = 0; .@i < .@amount; .@i++) getitem .@whatItem, .@amountItem; end; OnInit: setarray .listItems[0], 500, 501, 502, 503, 504, 505, 506, 507; //Items .size = getarraysize(.listItems); } There are still a few problems with the script but I don't have time. If you want the item to look like it dropped. https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L4827
-
Just load it like you would any other NPC. Also you shouldn't necro really old topics like this there is more than enough information out there about loading in NPCs.
-
It's bound to @monster command... Just do @monster 3 will summon 3 of a random mob id from that list.
-
Change additem to getitem.
-
So in November I started making my own GameCube controller for the GameBoy Player and wasn't able to finish it because of school, but it's finally done and I love you guys so I'm going to share it here. ?
-
prontera,173,200,4 script Blah -1,5,5,{ end; OnTouch: if(!instance_id()) end; npctalk "This is a message!"; monster "place",60,100,"Poring",1002,1,"NPCNAME::OnLabel"; disablenpc instance_npcname(strnpcinfo(0)); } This is the best way to figure out commands. https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L6194
-
Sorta but it would be dumb to do so... In order to do it without an npc at those coordinates, you would need to loop and constantly track your players' positions until they are at that point then run the rest of the script. The better way of doing that would be to create a hidden npc at the coordinates you want to trigger OnTouch. They should still work within an instance. Using -1 for an npc's sprite will make it hidden from the client.
-
@AnnieRuru Made a fantastic post with three excellent ways on how to do this already...
-
This script works very much like what the topic describes.
-
Could maybe shorten it to... prontera,255,255,3 script Equip Freebies 123,{ getinventorylist; copyarray .@inventory[0],@inventorylist_id[0],getarraysize(@inventorylist_id); for(.@i = 0; .@i < .len; .@i++){ if(!isequipped(.equip_id[.@i]) && inarray(.@inventory, .equip_id[.@i]) == -1) { getitem .equip_id[.@i],1; equip .equip_id[.@i]; } else .@fail++; } mes "[ Freebies ]"; if(!.len - .@fail){ mes "It looks like you already have all the freebie(s)."; close; } else if (.@fail) mes "It looks like you already have "+.@fail+" freebie(s)."; mes "Here is your freebies."; close; OnInit: setarray .equip_id, 1208, 2154; // Add your ID's here. .len = getarraysize(.equip_id); } Although in this case if the user was able to store/trade the freebies he could get more, but it would also allow the list of freebies to be updated. Also my example is completely untested so... Edit: I think equipped items might already show up in the @inventorylist_id so I might not even need isequipped().