Jump to content

truefg

Members
  • Posts

    58
  • Joined

  • Last visited

3 Followers

Profile Information

  • Gender
    Male
  • Location
    New york

Recent Profile Visitors

3001 profile views

truefg's Achievements

Poring

Poring (1/15)

0

Reputation

  1. Is there anyway this can be converted into rAthena format?? So it be used in my server... please!
  2. Hello everyone, Sorry if this post or request was done before or this is the wrong section to post. (if so, please move to the right section) I've looked all over the forum and can't find anything that would help me with the new version of rAthena im using. Request: "@pk Command" •Enable players to use "@PK" command for 'ON' [Enable] / 'OFF' [Disable] work in PVP mode/maps . •Command and pk is enable after base level is over 99. Not enable to use command before reaching level 99. (Player be notified upon login their pk status has changed and now they can be attacked. ** Also command is enable] •Mobs can still attack you. •When command is used, players would be notified every time they warp to a new map. Example: "Your pk mode is activated. If you want to disable this mode, Please re-log or go to any major city and type "@pk". •Players can only activate or deactivate this command by re-login or by warping and typing command on any major city or any map that's not a pvp mode map. •Won't work on War of Emperium castles. (Works outside of the castle, but no inside) Thanks in advance!!!!
  3. This Script is not working. It starts the woe, but dont show the Emperium in any castle. prontera,162,194,5 script WoE Setter 806,{ mes "[Woe Setter]"; if(getgmlevel()<99) goto L_NotGM; mes "Welcome, I can set WoE times for you"; mes "Simply follow the intruction given in each section after this, and it should be set and ready to use"; next; mes "[Woe Setter]"; mes "Now the fun starts"; mes "Please select what you want to do"; next; menu "Add a WoE time",L_Add,"Reset All WoE times",L_Reset,"View Current WoE times",-; mes "[Woe Setter]"; mes "Ok currently you have WoE times set for:-"; set @num,0; L_LoopList: if($sday[@num] == 0 && $eday[@num] == 0 && $woetime[@num] == 0 && $woetime2[@num] == 0) goto L_LoopListEnd; if($sday[@num]==0) set $@tempday$,"Sunday"; if($sday[@num]==1) set $@tempday$,"Monday"; if($sday[@num]==2) set $@tempday$,"Tuesday"; if($sday[@num]==3) set $@tempday$,"Wednesday"; if($sday[@num]==4) set $@tempday$,"Thursday"; if($sday[@num]==5) set $@tempday$,"Friday"; if($sday[@num]==6) set $@tempday$,"Saturday"; if($eday[@num]==0) set $@tempday2$,"Sunday"; if($eday[@num]==1) set $@tempday2$,"Monday"; if($eday[@num]==2) set $@tempday2$,"Tuesday"; if($eday[@num]==3) set $@tempday2$,"Wednesday"; if($eday[@num]==4) set $@tempday2$,"Thursday"; if($eday[@num]==5) set $@tempday2$,"Friday"; if($eday[@num]==6) set $@tempday2$,"Saturday"; if($eday[@num]==$sday[@num]) mes $@tempday$+" from "+$woetime[@num]+":00 till "+$woetime2[@num]+":00"; if($eday[@num]!=$sday[@num]) mes "From "+$@tempday$+" "+$woetime[@num]+":00 till "+$@tempday2$+" "+$woetime2[@num]+":00"; set @num,@num+1; goto L_LoopList; L_LoopListEnd: close; L_Add: set @num,0; L_AddLoop: if($sday[@num] == 0 && $eday[@num] == 0 && $woetime[@num] == 0 && $woetime2[@num] == 0) goto L_AddLoopEnd; set @num,@num+1; goto L_AddLoop; L_AddLoopEnd: mes "[Woe Setter]"; mes "What day do you want the WoE to start ^FF0000start^000000 in?"; next; menu "Sunday",-,"Monday",-,"Tuesday",-,"Wednesday",-,"Thursday",-,"Friday",-,"Saturday",-; if(@menu==1) set $sday[@num],0; if(@menu==2) set $sday[@num],1; if(@menu==3) set $sday[@num],2; if(@menu==4) set $sday[@num],3; if(@menu==5) set $sday[@num],4; if(@menu==6) set $sday[@num],5; if(@menu==7) set $sday[@num],6; mes "[Woe Setter]"; mes "Ok, now please enter the hour you wish the WoE to ^FF0000start^000000 at"; mes "This is using a 24 hour clock"; mes "00 = Midnight"; mes "12 = Mid-day"; mes "23 = 11pm"; next; input @input; if (@input < 0 || @input > 24) goto L_BadNumber; set $woetime[@num],@input; mes "[Woe Setter]"; mes "What day do you want the WoE to start ^FF0000finish^000000 in?"; next; menu "Same as start",-,"Sunday",-,"Monday",-,"Tuesday",-,"Wednesday",-,"Thursday",-,"Friday",-,"Saturday",-; if(@menu==1) set $eday[@num],$sday[@num]; if(@menu==2) set $eday[@num],0; if(@menu==3) set $eday[@num],1; if(@menu==4) set $eday[@num],2; if(@menu==5) set $eday[@num],3; if(@menu==6) set $eday[@num],4; if(@menu==7) set $eday[@num],5; if(@menu==8) set $eday[@num],6; mes "[Woe Setter]"; mes "Ok, now please enter the hour you wish the WoE to ^FF0000finish^000000 at"; mes "This also uses the 24 hour clock"; mes "00 = Midnight"; mes "12 = Mid-day"; mes "23 = 11pm"; next; input @input; if (@input < 0 || @input > 24) goto L_BadNumber; set $woetime2[@num],@input; mes "[Woe Setter]"; mes "You WoE time has now been set"; mes "To confirm this, ask me to show you the ^FF0000'View Current WoE times'^000000"; close; L_Reset: mes "[Woe Setter]"; mes "You are about to reset all the set WoE times you have created"; mes "Are you sure?"; next; menu "No, what was I thinking",L_No,"Yes I really want to do it",-; if(agitcheck()) goto L_WoEOn; deletearray $sday[0],200; deletearray $eday[0],200; deletearray $woetime[0],200; deletearray $woetime2[0],200; mes "[Woe Setter]"; mes "They are all gone now, please remember to set new ones"; close; L_WoEOn: mes "[Woe Setter]"; mes "Sorry since there is a WoE in progress you cannot reset the WoE times"; close; L_No: mes "[Woe Setter]"; mes "Oh, good, come back whenever"; close; L_NotGM: mes "The current WoE times are :-"; set @num,0; goto L_LoopList; end; L_BadNumber: mes "[Woe Setter]"; mes "Sorry that was an invalid number, please try again"; close; } - script Agit_Event2 -1,{ end; OnInit: disablenpc "Agit_Event"; OnMinute00: OnAgitInit: // starting time check set $@num,0; L_StartLoop: if($sday[$@num] == 0 && $eday[$@num] == 0 && $woetime[$@num] == 0 && $woetime2[$@num] == 0) goto L_StartLoopEnd; if(gettime(4)==$sday[$@num] && gettime(3)>=$woetime[$@num] && (gettime(3)<$woetime2[$@num] || $sday[$@num]!=$eday[$@num])) goto L_Start; set $@num,$@num+1; goto L_StartLoop; // end time checks L_StartLoopEnd: set $@num,0; L_EndLoop: if($eday[$@num] == 0 && $woetime[$@num] == 0 && $woetime2[$@num] == 0) end; if((gettime(4)==$eday[$@num]) && (gettime(3)==$woetime2[$@num])) goto L_End; set $@num,$@num+1; goto L_EndLoop; end; // Stop WoE L_End: if(!agitcheck()) end; Announce "The War Of Emperium is over!",8; AgitEnd; end; // Start WoE L_Start: if(agitcheck()) end; Announce "The War Of Emperium has begun!",8; AgitStart; end; }
  4. Where can i find the following npcs 1. Magic Gear Master (aldebaran,133,112/prontera,163,178) 2. Point Merchant (aldebara,133,114) 3. Eden Teleport Officer (aldebaran,133,119/morocc,161,97) HELP.. i need to remove those npcs..
  5. /conf/char_athena.conf //=================================== // Pincode system //=================================== // NOTE: Requires client 2011-03-09aragexeRE or newer. // A window is opened before you can select your character and you will have to enter a pincode by using only your mouse. // Default: yes pincode_enabled: yes change it to no //=================================== // Pincode system //=================================== // NOTE: Requires client 2011-03-09aragexeRE or newer. // A window is opened before you can select your character and you will have to enter a pincode by using only your mouse. // Default: yes pincode_enabled: no i hope it helped you (: Thanks!!!
  6. DONE.. Now how can i take this out.. ???? S.S
  7. ok, Everything is done. now this is happening. I bought a hosting server so this is the problem now. (Honestly, i dont know what to do, i'm paying this hosting and this my RO is not working, Need Help please, because they don't know what is wrong with my connections anyway) S.S #1 S.S #2 S.S #3 S.S #4 Connection S.S DATA.in [Data] 1=personaldata.grf 2=data.grf 3=rdata.grf And Finally, the Clientinfo <?xml version="1.0" encoding="euc-kr" ?> <clientinfo> <servicetype>korea</servicetype> <servertype>sakray</servertype> <connection> <display>Rates:3k/3k/10</display> <balloon>theballon</balloon> <desc>description</desc> <address>192.69.201.233</address> <port>6900</port> <version>31</version> <langtype>1</langtype> <registrationweb>http://www.zodiac-ro.ragnarok.so</registrationweb> <aid> <admin>2000000</admin> <admin>2000001</admin> <admin>2000002</admin> </aid> <loading> <image>loadingscreen01.jpg</image> </loading> </connection> </clientinfo> BUMP~
  8. Yes I'm using 2012-04-18 as my RagexeRE.. Everything seems to be good connected and all set. But still giving me the failed to connect to server. ~~~ When I try to register with "_M" it tells me that "Username or Password is incorrect" What is this warning im getting? S.S Sources I used: rAthena Source/Trunk: rAthena Revision 17698 GRF: Alexandria's Data Folder (Ver - Download Link: data_v3.0) Client: Supportmii's Client [Ver: 2012-04-18aRagexeRE ] Steps that I wondered, I looked into this Tutorial. (Just for the steps that I didn't remember or wonder how to do it) Programming: http://youtu.be/3LTOOEjRtUo Making Client/Starting the server: http://youtu.be/CtDRZki3Hpo Please Help!!
  9. PLEASE HELP!!!!!!!!!! Clientinfo: <?xml version="1.0" encoding="euc-kr" ?> <clientinfo> <servicetype>korea</servicetype> <servertype>sakray</servertype> <connection> <display>ZodiacRO</display> <balloon>the balloon</balloon> <desc>description</desc> <address>127.0.0.1</address> <port>6900</port> <version>26</version> <langtype>1</langtype> <registrationweb>www.Zodiac-ro.net/Register</registrationweb> <aid> <admin>2000000</admin> <admin>2000001</admin> <admin>2000002</admin> </aid> <loading> <image>loadingscreen01.jpg</image> </loading> </connection> </clientinfo> Packet_Ver: #ifndef PACKETVER #define PACKETVER 20120418 //#define PACKETVER 20120410 #endif SERVER RUNNING S.S Error S.S PORT Setup S.S
  10. Can someone help me, how to set it up. Now its saying this.. ~Thanks For The skin.. S.S
  11. Im not sure what kind of error is this? PLEASE HELP! ~Also can ya help me to change the interface language. Thanks! S.S
  12. Like tHis ???? 4357,B_Seyren_Card,Lord Knight Card,6,20,,10,,,,,,,,769,,,,,{ skill "LK_BERSERK",1; bonus bMaxHPrate,-50; bonus2 bSkillAtk,"KN_SPEARBOOMERANG",50; },{},{}
  13. TO be honest.. idk how to do it.. can you atleast give me an example.. :$
  14. How can i add this effect to this card... i want to put.. 50% more hit with Boomerang spear.. or something like that.. dont remember the name of the skill.. Can someone help me please!!! 4357,B_Seyren_Card,Lord Knight Card,6,20,,10,,,,,,,,769,,,,,{ skill "LK_BERSERK",1; bonus bMaxHPrate,-50; },{},{}
×
×
  • Create New...