Jump to content

quesoph

Members
  • Posts

    210
  • Joined

  • Last visited

Everything posted by quesoph

  1. Suggestion. Place a timer in this command. example: You can only use this command for a certain amount of time and it automatically turns off after that.. and you can only use it after 1 hour or so..
  2. ../db/pre-re/skill_require_db.txt ../db/re/skill_require_db.txt // Structure of Database: // SkillID,HPCost,MaxHPTrigger,SPCost,HPRateCost,SPRateCost,ZenyCost,RequiredWeapons,RequiredAmmoTypes,RequiredAmmoAmount,RequiredState,SpiritSphereCost,RequiredItemID1,RequiredItemAmount1,RequiredItemID2,RequiredItemAmount2,RequiredItemID3,RequiredItemAmount3,RequiredItemID4,RequiredItemAmount4,RequiredItemID5,RequiredItemAmount5,RequiredItemID6,RequiredItemAmount6,RequiredItemID7,RequiredItemAmount7,RequiredItemID8,RequiredItemAmount8,RequiredItemID9,RequiredItemAmount9,RequiredItemID10,RequiredItemAmount10
  3. prontera,150,150,6,<tab>script<tab>Vote shop<tab>763,{ set .@cost,50; mes "It costs "+.@cost+" vote points to rent this item."; if (#votepoints < .@cost) close; //If you are using cashpoints in your vote system. you should replace #votepoints with #CASHPOINTS or #KAFRAPOINTS depending on your configuration. next; if(select("Rent.:Cancel.")==2) close; set #votepoints, #votepoints-.@cost; //If you are using cashpoints in your vote system. you should replace #votepoints with #CASHPOINTS or #KAFRAPOINTS depending on your configuration. rentitem 1107,9999; // explanation: Npc will give you blade( 1107 ) for 9999 Seconds. dispbottom "Your remaining points: "+ #votepoints; //query_sql("UPDATE `vote_point` SET `point` = '"+.@new+"' WHERE `account_id` = '"+getcharid(3)+"'"); <- remove this line. if your variable is vote_points then replace #votepoints above. mes "Here you go!"; close; } @kangferdy change the vote points with your killing points variable. eg: prontera,150,150,6,<tab>script<tab>Vote shop<tab>763,{ set .@cost,50; mes "It costs "+.@cost+" vote points to rent this item."; if (killingpoints < .@cost) close; next; if(select("Rent.:Cancel.")==2) close; set killingpoints, killingpoints - .@cost; rentitem 1107,9999; // explanation: Npc will give you blade( 1107 ) for 9999 Seconds. mes "Here you go!"; close; }
  4. @Rabbit It works fine with 000webhost.com's free host. i wonder why its not working with my web host. maybe apache version compatibility? 000webhost is using apache 2.2.19 My local webhost apache version 2.2.21 and in my webhost is 2.2.22 Is there anyway i could check this?.. Whenever i checked the " view page source " and compare it with my local webhost's " view page source ". my webhost has different page source.
  5. No, i am not using a different browser.. i am using the latest mozilla firefox for both of the images above.. that is why i am confused with the two.. >.< anyone has an idea or have experienced this kind of problem?
  6. Hi, i would like to ask about the difference of the two. online web host and xampp. In my local web host and previous online web host it shoes like this: But in my new online web host it shows like this: Is it the apache version, php version? or what?.. Im really confused about this.
  7. yum -y install gcc automake autoconf libtool make
  8. Whats the purpose of the computer you are trying to build? gaming?
  9. Is there anyone who has a website or vps hosted to axwebs? Both of my websites are currently down and are hosted to axweb..
  10. And of course you need to recompile your server. Kiel Card or any delay reducing items can't bypass this: ../src/map/skill.c case WM_LULLABY_DEEPSLEEP: if( rnd()%100 < 88 + 2 * skilllv ) sc_start(bl,status_skill2sc(skillid),100,skilllv,skill_get_time(skillid,skilllv)); + skill_blockpc_start (sd, WM_LULLABY_DEEPSLEEP, 2000); break; and if you want to bypass the delay using delay reduce item then use Docubo's method.
  11. From what i understand in your thread. some of the 3rd jobs (listed above) in your server has a disabled skills and you wanted to enable them?. if i am mistaken please explain further. Solution 1: Update your server using: Terminal ( Putty ) for Linux. svn update Tortoise for Windows. or Simply Add the code Copy and Paste style. Solution 2: Get a Fresh rAthena rev 16233 and place all your custom stuffs in your new server.
  12. ../src/map/skill.c case WM_LULLABY_DEEPSLEEP: if( rnd()%100 < 88 + 2 * skilllv ) sc_start(bl,status_skill2sc(skillid),100,skilllv,skill_get_time(skillid,skilllv)); + skill_blockpc_start (sd, WM_LULLABY_DEEPSLEEP, 2000); break;
  13. Good Release but ill stick to the script that works exactly like this. good job.
  14. Solution: Update your server files.
  15. Dont diff your client with "Read data folder first" .
  16. ../db/pre-re/item_db.txt ../db/re/item_db.txt 12114,Elemental_Fire,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",4; },{},{} 12115,Elemental_Water,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",2; },{},{} 12116,Elemental_Earth,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",3; },{},{} 12117,Elemental_Wind,Elemental Converter,11,2,,10,,,,,0xFFFFFFFF,7,2,,,,,,{ itemskill "ITEM_ENCHANTARMS",5; },{},{} Item type should be 11.
  17. data/itemslotcounttable.txt 1533#4# .../db/pre-re/item_db.txt 1533,Warrior_Balmung_,Warrior's Balmung,4,20,,1000,170,,1,4,1616934114,7,2,2,4,48,1,1,{ bonus bAllStats,5; },{},{}
  18. replace this // Respawn the Emperium, and display new owners. if (agitcheck()) { sleep2 500; // Slow down script execution slightly. donpcevent "Agit#"+strnpcinfo(2)+"::OnStartArena"; } to this set .@breaker$, strcharinfo(0); // Respawn the Emperium, and display new owners. if (agitcheck()) { sleep2 500; // Slow down script execution slightly. donpcevent "Agit#"+strnpcinfo(2)+"::OnStartArena"; announce "The [" + getcastlename(strnpcinfo(2)) + "] castle has been conquered by [ "+.@breaker$+" ] of the [" + getguildName(.@GID) + "] guild.",bc_all; end; }
  19. Bump for this multiple races, like new "guilds", orcs, elves, etc and this Thank you.
  20. set .@breaker$, strcharinfo(0); // Respawn the Emperium, and display new owners. if (agitcheck()) { sleep2 500; // Slow down script execution slightly. donpcevent "Agit#"+strnpcinfo(2)+"::OnStartArena"; announce "The [" + getcastlename(strnpcinfo(2)) + "] castle has been conquered by [ "+.@breaker$+" ] of the [" + getguildName(.@GID) + "] guild.",bc_all; end; }
  21. here ya go. dicastes01,213,167,5 script Warp to Dewata 536,{ if( paid ) { warp "dewata",232,53; announce " "+strcharinfo(0)+": has been warped to Dewata Island!!",bc_all; end; } if( countitem(6048) >= 10 || countitem(7078) >= 5) { delitem 6048,10; delitem 7078,5; set paid, 1; warp "dewata",232,53; announce " "+strcharinfo(0)+": has been warped to Dewata Island!!",bc_all; } else { warp "SavePoint",0,0; dispbottom "Entry to Dewata requires a 10pcs Unidentified Ore and 5pcs Wrath of Valkyrie."; } end; }
  22. For better solution set this script to an item that has ONE slot in it so that it will be safe to decard.
×
×
  • Create New...