Jump to content

Haze

Members
  • Posts

    36
  • Joined

  • Last visited

3 Followers

Profile Information

  • Gender
    Male
  • Location
    Nowhere
  • Server
    Underconstruction

Recent Profile Visitors

1971 profile views

Haze's Achievements

Poring

Poring (1/15)

0

Reputation

  1. I'm sure you can hold shift to kill the mobits a client side limitation -> players can only be attack in pvp/gvg/battleground maps its the same principle that a player under @killable in non-pvp map, other players need to hold shift key to target him/her as for the script ... seems like I don't have enough time for it ... I bookmarked more than 20 topics now ... this is just 1 of them oh ok thanks for the info. No worries you could take as much time as you want, since this is just a request its in your discretion to help or not. And in any matter I'd still like to thank you
  2. Requesting a script with the following parameters: Quest Type: Party Quest Mechanics: Warps a party to map to accomplish a quest. The quest can only be done with a party of atleast 4 players. The members of the party must be within a 7x7 of the Party Leader. The NPC will require the leader a # of items to qualify for the party quest. The mobs within the Quest Map will only spawn when the quest is intiated. If to die with the map the player will respawn at a specific spot inside the map. after the quest their respawn/savepoint will be prontera again. Only 1 party in the whole server can do the quest The party will have only 1hr to do the quest. The quest NPC will require them to defeat a boss in the map. If not accomplished within 1hr all the mobs will be cleaned and the quest will be opend for another party to attempt. Upon completion, the quest will announce "Haze party has successfully accomplished the party quest! Congratulations!" Fastest completion time will be saved and will have a ranking. (can be reset by admin) Upon completion they can redo the quest after 1day others: map to be used lhz_dun04 mob Id for boss 1900 lesser mobs 1634-1645 Offtopic: another thing, where or what do i change in mob_db so that i dont need to enable pvpon in the map just to kill the boss #1900, i cant attack it normally without the pvpon, im using mob_avail to make it look like another character.
  3. Is there any guide on how to properly apply this? http://rathena.org/board/topic/82370-costume-npc-and-costumeitem/ I really would like to have this feature into my server. could anyone help me out with applying this?
  4. 1. it starts for example players type @joinbg and when there are enough players( atleast 10) the bg starts, it ends just like the regular bg 2. the maps to be used are the default bg maps 3. its basically the official bg its just that the way to join is that they just need to type @joinbg 4. the winning conditions are just the same as the regular bg's from rathena so i think my requests is just having a command to join bg and then a random bg event will commence when there are sufficient players
  5. players just need to type @joinbg and until the slots, 10players minimum, get filled the bg will start. and the bg type will be random. is there already a script for this? if so please remove or close this topic
  6. apparently there isnt a folder named news in both modules and theme. should i just create a folder or should i find a .php file as well?
  7. when i tried to navigate through the links for those said in the title i stumbled over errors with i can seem to fix. could anyone please help me? I'm using a premade fluxcp http://rathena.org/board/files/file/2991-green-fluxcp-theme/ and i get this error
  8. Thank you so much Annie, you've help me alot lately you're so very kind <3
  9. I tried but with every try i dont show how many GM is online on the waiting room. its always 0 even after i relog. could anyone help me please? prontera,130,168,4 script Official GM List 837,{ mes "Staffs Online Lists : ^FF0000"+getarraysize( .GM_Name$ )+"^000000 Staffs"; mes "^0000FF_____________________________^000000"; for( set .@i,0; .@i < getarraysize( .GM_Name$ ) ; set .@i,.@i + 1 ){ getmapxy( .Map$,.x,.y,0,.GM_Name$[.@i] ); mes "[ ^63D1F4"+.GM_Level$[.@i]+"^000000 ] ^FF0000@ ^0000FF"+.GM_Name$[.@i]+"^000000"; mes "^0000FF_____________________________^000000"; } close; OnInit: waitingroom "Staff Online : "+getarraysize( .GM_Name$ )+"",0; set .MinGMLevel,1; // Min. GM Level to Show in Online Lists end; OnPCLoginEvent: set .@gmlevel,getgmlevel(); if( .@gmlevel < .MinGMLevel ) end; set .@size,getarraysize( .GM_Name$ ); set .GM_Name$[ .@size ],strcharinfo(0); if( .@gmlevel < 10 ) set .GM_Level$[ .@size ],"Trial GM"; else if( .@gmlevel < 20 ) set .GM_Level$[ .@size ],"Support"; else if( .@gmlevel < 30 ) set .GM_Level$[ .@size ],"Police"; else if( .@gmlevel < 40 ) set .GM_Level$[ .@size ],"Head GM"; else set .GM_Level$[ .@size ],"ADMIN"; end; OnPCLogoutEvent: if( getgmlevel() < .MinGMLevel ) end; for( set .@i,0; .@i < getarraysize( .GM_Name$ ) ; set .@i,.@i + 1 ) if( strcharinfo(0) == .GM_Name$[.@i] ){ deletearray .GM_Name$[.@i],1; deletearray .GM_Level$[.@i],1; end; } end; }
  10. Could someone help me in making a script for a custom box where the case is, there is a chance to get a random item with a random amount and a random chance, or could anyone please help me with this unfinished/incorrect script function script prize { setarray .@items[0],501,502; setarray .@qtys[0],1,1; if( checkweight2( .@items,.@qtys ) ){ getitem .@items, rand; }else{ mes "You are Overweight"; } } I'm not quite sure how to finish it
  11. is there a way i can remove a person from banishment through this script?
  12. these 2 definitely needs source coding - script Haze 100,{ Onitemrain: .@itemid = atoi( .@atcmd_parameters$ ); if ( getitemname( .@itemid ) == "null" ) { message strcharinfo(0), "Invalid Item ID"; end; } .@area = getbattleflag("area_size"); getmapxy .@map$, .@x, .@y, 0; while ( .@i < 100 ) { makeitem .@itemid, 1, .@map$, .@x + rand( -.@area, .@area ), .@y + rand( -.@area, .@area ); .@i++; } end; OnInit: bindatcmd "itemrain", strnpcinfo(0) +"::Onitemrain", 60,100; end; } - script Haze 100,{ Onorder: if ( !getcharid(2) ) end; if ( getguildmasterid( getcharid(2) ) != getcharid(0) ) { message strcharinfo(0), "Only guild master can use this command"; end; } .msg$ = .@atcmd_parameters$; addrid 3, 0, getcharid(2); announce .msg$, bc_self; end; OnInit: bindatcmd "order", strnpcinfo(0) +"::Onorder", 0,100; end; } Thank you so much for this
  13. I updated my svn then tried to login but when i enter my account it doesnt login and says its an unregistered account? did i do something wrong with updating my svn? or am I missing to change something in a file?
  14. Can anyone help me with this? how do i declare this? I'm using the latest stuff here: https://github.com/rathena/rathena/tree/master/src/map
  15. Could someone please make a restriction script something like this but restricts the summon of some specific items like this http://rathena.org/board/topic/90084-gm-monster-restriction/
×
×
  • Create New...