Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/23/13 in all areas

  1. File Name: UFC Strikeforce PvP Arena File Submitter: Olrox File Submitted: 12 Mar 2013 File Category: Maps & 3D Resources Video: Content Author: Olrox Join my facebook: https://www.facebook.com/OlroxMaps < -- For Video of this Map Click Me--> Important: if you use 2012 clients, you must beware that animation is not supported to these clients yet. To avoid an error, please install the files in 2012 directory inside the pack and the map will run just normal, but without animation. UFC Strikeforce Arena is, a small arena designed for pvp events 1vs1, (just as the real UFC), although you can use it for more people if you want. The whole octagon was a model and the textures were made by me (although I used some metal patterns in PS and real life photos to make for example, the corner bags) The white octagon area has a trick, to be possible to iluminate it it was necessary to not make it as a model (since models can't be iluminated) so, a set of custom textures with magenta present did the trick! This arena is very nice. However, the most particular feature it has, is the TV Screen since it is Animated and it shows different images of Ragnarok and Real UFC images in different sequences. Anyone interested in this map can change those images with particular adds of his server, or, lets say: players of the month/guild of the month, top ranked players, or important server announcements. It is easy, just to replace some images file. IMPORTANT This map comes with 2 versions in the same pack. One with spectators walkable cells enabled, and another one with only the pvp arena walkable cells enabled. It is up to your choice! The list of images you can edit to show your own server art is listed below: *data/texture/ta1.bmp (...) ta4.bmp *data/texture/tb1.bmp (...) tb4.bmp *data/texture/tc1.bmp (...) tc4.bmp. *data/texture/td1.bmp (...) td4.bmp. Click here to download this file
    1 point
  2. Hahaha, the trees move! That's awesome. Keep up the good work. I'll have to agree with some people though, I think summer is too dry, the trees are nice, but the grass is weird.
    1 point
  3. What format are your `start_date` and `end_date` columns? If they are YYYY-MM-DD HH:MM:SS then you should us FROM_UNIXTIME() to convert from UNIX timestamp to Date-Time format.
    1 point
  4. Try this one : prontera,150,150,0 script Sample 100,{ if ( Zeny < 100000000 ) end; if( select( "Exchange Zeny to Cash","Cancel" ) == 1 ) { Zeny -= 100000000; #CASHPOINTS += 1000; dispbottom "You now have " +#CASHPOINTS+ " cash points."; mes "Done"; close; } end; }
    1 point
  5. @eboni just edit the sc_status duration .... 1000 = 1 second..
    1 point
  6. yea sorry lol. I didn't notice it right away.... I was seeing CR_FullProtect and it clicked as correct, but Emistry is right, it should be those listed SC effects... 8145,creator_flamel_card,Creator Card,6,20,,10,,,,,,,,16,,,,,{ bonus bNoKnockback,0; },{ sc_start4 SC_CP_WEAPON,60000,5,0,0,1; sc_start4 SC_CP_SHIELD,60000,5,0,0,1; sc_start4 SC_CP_ARMOR,60000,5,0,0,1; sc_start4 SC_CP_HELM,60000,5,0,0,1; },{ sc_end SC_CP_WEAPON; sc_end SC_CP_SHIELD; sc_end SC_CP_ARMOR; sc_end SC_CP_HELM; } So yea, the above should do what you wanted...
    1 point
  7. extract it from data.grf or get it from old data folder.
    1 point
  8. it should be db/const.txt SC_CP_WEAPON 72 SC_CP_SHIELD 73 SC_CP_ARMOR 74 SC_CP_HELM 75
    1 point
  9. if( select( "Exchange Zeny to Cash","Cancel" ) == 1 ){ if( Zeny < 100000000 ){ mes "You need 100,000,000"; }else{ Zeny -= 100000000; #CASHPOINTS += 1000; mes "Done"; } } close;
    1 point
  10. Problem here is: donpcevent requires a player to be attached, while doevent does not. Additionally, your thinking too hard for this, and in a result made it over complicated. You can just combine both of those scripts.... prontera,164,174,4 script Newbie Gift 115,{ if( !#Freebiess ){ set #Freebiess,1; mes "Welcome...this is your gift..."; getitem 1530,1; showevent 0,0; }else{ mes "You have claim the Reward already."; } close; OnPCLoginEvent: if(!#Freebiess){ showevent 1,0; } end; } There, I combined them, also, I changed it to check to see if they received the Item when they login, so it only does " showevent 1,0 " when a NEW account logs in, not just anybody.
    1 point
  11. Cuz i got some misunderstanding with this... Btw... to use this v4p,did we must use the default theme of flux cp??.?? just go to fluxcp/themes/default/img create a folder name it votes. that's it, because that is where the picture be uploaded when you create a vote list
    1 point
  12. Didn't try so test this : - script Sample -1,{ OnPCLoginEvent: query_sql "SELECT `DATE_FORMAT(birthdate, '%m')`, `DATE_FORMAT(birthdate, '%d')` FROM `login` WHERE `account_id` = '" +getcharid(3)+ "'", .@month, .@day; if ( ( gettime(6) == .@month ) && ( gettime(5) == .@day ) ) getitem 502, 10; dispbottom "Happy Birthday " +strcharinfo(0)+ "!"; end; }
    1 point
  13. - script birthday -1,{ OnPCLoginEvent: if(#last_bdyear != gettime(7)) { set @nb, query_sql("select birthdate from `login` where `account_id`='"+getcharid(3)+"'", @bdate$); explode(.@bdate$, @bdate$, "-"); set .@curdate$, gettimestr("%m%d",21); if(.@curdate$ == (.@bdate$[1]+""+.@bdate$[2])) { getitem 7227,1; set #last_bdyear,gettimestr("%Y",21); set @byear, .@bdate$[0]; set .@sexword$, (sex) ? "his":"her"; announce "Hey everyone, "+strcharinfo(0)+" celebrates "+.@sexword$+" "+(#last_bdyear-@byear)+" birthday!",bc_blue|bc_all; } } end; }
    1 point
  14. Hi jaycee016, What I can recommend is edit '/trunk/src/map/harmony.c' and find the following; int _harmony_localfix_pc_group_id2level(int id) { GroupSettings* group = pc_group_id2group(id); if (!group) return 0; return pc_group_get_level(group); } And then comment it out by doing the following; //int _harmony_localfix_pc_group_id2level(int id) { // GroupSettings* group = pc_group_id2group(id); // if (!group) // return 0; // return pc_group_get_level(group); //}
    1 point
  15. It is not from Gravity, it is just another private server, that chooses to run it's servers as close to Official as possible (what rAthena is out of the box). What they claim for " official server character transfers " is just them saying, they will try their best to recreate said character on an account on their server for you. So it's as if you DID transfer from IRO to their private server.
    1 point
  16. try this.. Blue Ghost Setup.exe work well for my 2012 clients... No need to select the diff file for HKML to HKCU ......
    1 point
×
×
  • Create New...