Jump to content

simplynice

Members
  • Posts

    128
  • Joined

  • Last visited

1 Follower

Recent Profile Visitors

3101 profile views

simplynice's Achievements

Poring

Poring (1/15)

4

Reputation

  1. any solution for this: https://rathena.org/board/topic/105337-thor-patcher-ascii/
  2. Normal characters are all fine. Except with the ascii.
  3. StatusFile='Rö.dat' DefaultGRF='Rö.grf' ClientEXE='Rö.exe' I have that settings in thor and it seems it's not reading the filename correctly as "Rö" any solutions?
  4. Thanks bro, or fn + shift + insert for laptops.
  5. I'm not sure where to post this since it can be a hotkey problem / client problem or lub problem. I'm using 2008-01-22 client. Too old, i know. Anyone knows how to remove ctrl+v from the image? so i can paste a text into a chatbox and remain the alt+v. See attachment.
  6. I want to spawn different kind of mobs that saved on the array. 5 Levels. Can't make it work. Here's my code: set .@count,0; setarray .@namelevel$[0], ".@level0", ".@level1", ".@level2", ".@level3", ".@level4"; setarray .@level0[0], 1002, 1002, 1002; setarray .@count0[0], 1, 1, 1; setarray .@level1[0], 1002, 1002, 1002; setarray .@count1[0], 1, 1, 1; setarray .@level2[0], 1002, 1002, 1002; setarray .@count2[0], 1, 1, 1; setarray .@level3[0], 1002, 1002, 1002; setarray .@count3[0], 1, 1, 1; setarray .@level4[0], 1002, 1002, 1002; setarray .@count4[0], 1, 1, 1; for( set .@i, 0; .@i < getarraysize(.@namelevel$[.@count]); set .@i, .@i +1 ) { // spawn monster here and call the :monsterKilled label and count mobs on the map // if mob count is 0 set .@count, .@count+1 // and do the for loop again // so it will be .@level1 // until .@level4 finishes } Any work around? Thank you in advance.
  7. hi there could u kindly explain y do u need such a script? i apologize but i did not understand the need of such script. I'd like to limit players to talk to NPC because it gives item.
  8. I'd like to attach a timer to a player. Example: I will talk to NPC and after talking to NPC . the NPC will block the player to talk into that NPC for 1 week. It's an account based attachment of time. The purpose of the 1 week time is it cannot talk to the NPC even if he goes offline and online again. I just need an idea easy enough to understand.
  9. Thank you for this sir! I edited your work into much simpler one, it will let you select up to 3x with the same item. setarray .beadID[1],4739,4709,4749,4729,4759,4719,4790,4794,4763,4799,4802,4825,4831,4841,4844,4849,4848,4852,4868; deletearray .@selections[1], getarraysize(.beadID); set .@how_many_selects, 4; while (.@how_many_selects > 1) { set .@BeadMenu$,""; for( set .@i,1; .@i < getarraysize( .beadID ); set .@i,.@i + 1 ){ set .@BeadMenu$,.@BeadMenu$ + getitemname( .beadID[.@i] )+":"; } set .@Bead,select( .@BeadMenu$ ); set .@how_many_selects, .@how_many_selects - 1; set .@selections[.@how_many_selects], .beadID[.@Bead]; sleep2 1; } for ( set .@i, 1; .@i < getarraysize(.beadID); set .@i, .@i+1 ) { if (.@selections[.@i]) { //getitem .@selections[.@i],1; dispbottom "ITEM ID"+.@selections[.@i]; } } close; Thanks for the snippet.
  10. So my script is just like this.. //this is the item choices setarray .beadID[1],4739,4709,4749,4729,4759,4719,4790,4794,4763,4799,4802,4825,4831,4841,4844,4849,4848,4852,4868; set .@BeadMenu$,""; //loop for menufor( set .@i,1; .@i < getarraysize( .beadID ); set .@i,.@i + 1 ){ set .@BeadMenu$,.@BeadMenu$ + getitemname( .beadID[.@i] )+":"; } //makes a selection of what item you want set .@Bead,select( .@BeadMenu$ ); I want the player to choose three kinds of bead or loop it 3 times and save it into an array. How can i achieve this?
  11. What he means is that when a normal player hack a gm or an account with a group id of 1 or higher, it will prompt the hacker a password and if not matched, it will be give a group id of 25 which has no commands. That's the script does, it gives the person a group id of 25 with no commands although if the password did not match it will kick the person. There's no use that you want him inside the game without a basic command.
  12. Are you trying to ban or kick those GM with a level of 2 - 98. If it is then: if( (getgroupid != 99) || (getgroupid != 1) ){ //kick him or whatever atcommand "@kick "+strcharinfo(0)+""; }
  13. Good day, i don't know if this belongs here or source. Everytime a game master uses @monster or any @commands it will announce ingame that the person uses the @monster command.
  14. No don't go for www.ilinkhostingsolutions.com/ they don't have DDOS protection just bullshit protection. been there, done that.
  15. That's only for account with a group_id of 1 and higher. Those normal players will stay as it is. It's a simple security script.
×
×
  • Create New...