Jump to content

Deleted User

Members
  • Posts

    235
  • Joined

  • Days Won

    6

Everything posted by Deleted User

  1. This kind of questions is not really necessary, you can host a WEBSITE to any other Web Hosting company. It depends on your needs if you want expensive one then go for dDOS Protection for the fully secured website. If you don't have budget, then better don't start "RUN" a server. PS: Google.com is your best friend.
  2. Other note, when compiling rA Emulator I usually make "Clean Solution" before doing "Build Solution". it's an old way that I used in eAthena before.
  3. Probably they have their own Client Diff Patcher, probably made by Tokei. And I'm pretty sure it won't be in public released. just guessing XD. I hope @NeoMind will activate again.
  4. http://immortalsro.com/rAScripts/display_arrays.txt
    Probably I'm too late but I just try this easy to read.

    1. Radian

      Radian

      Thank you for this, I can use this one.

  5. change your *getequipid(<equipment slot>{,<char_id>}) This function returns the item ID of the item equipped in the equipment slot specified on the invoking character. If nothing is equipped there, it returns -1. Valid equipment slots are: EQI_ACC_L (0) - Accessory 1 EQI_ACC_R (1) - Accessory 2 EQI_SHOES (2) - Footgear (shoes, boots) EQI_GARMENT (3) - Garment (mufflers, hoods, manteaux) EQI_HEAD_LOW (4) - Lower Headgear (beards, some masks) EQI_HEAD_MID (5) - Middle Headgear (masks, glasses) EQI_HEAD_TOP (6) - Upper Headgear EQI_ARMOR (7) - Armor (jackets, robes) EQI_HAND_L (8) - Left hand (weapons, shields) EQI_HAND_R (9) - Right hand (weapons) EQI_COSTUME_HEAD_TOP (10) - Upper Costume Headgear EQI_COSTUME_HEAD_MID (11) - Middle Costume Headgear EQI_COSTUME_HEAD_LOW (12) - Lower Costume Headgear EQI_COSTUME_GARMENT (13) - Costume Garment EQI_AMMO (14) - Arrow/Ammunition EQI_SHADOW_ARMOR (15) - Shadow Armor EQI_SHADOW_WEAPON (16) - Shadow Weapon EQI_SHADOW_SHIELD (17) - Shadow Shield EQI_SHADOW_SHOES (18) - Shadow Shoes EQI_SHADOW_ACC_R (19) - Shadow Accessory 2 EQI_SHADOW_ACC_L (20) - Shadow Accessory 1
  6. As I read the script, you can set-up the prize via GM Account.
  7. Please try this. function script F_RandomRate { .@r = rand(100); if( .@r <= 10 ) // 10% Rate setarray .@i,607,15,608,25; else if( .@r <= 40 ) { // 40% Rate setarray .@i,607,10,608,20; } else { dispbottom( "You recieved nothing."); end; } getitem .@i[0],.@i[1]; end; }
  8. prontera,150,166,4 script Test 777,5,5,{ end; OnTouch: npctalk "Hey you "+strcharinfo(0); sleep2 5000; unittalk getcharid(3), "Hey"; sleep2 10000; end; }
  9. Just check OnInit: to modify your likes. http://immortalsro.com/rAScripts/lvlup_rewards.txt
  10. Typo: getitem .19546, .1; To getitem .item_id, .amount;
  11. Hi please try this I'm not on my PC. - script hourly_reward_main -1,{ OnInit: setarray .itemid,6379,522,12412,604,12221,16774,12103,12710,14296,14601,7929,12202,12203,12204,12205,12206,12207,7959; setarray .amount,10,100,1,10,1,2,2,3,2,5,2,2,2,2,2,2,2,2; .itemid_size = getarraysize( .itemid ); end; OnMinute00: .@size = query_sql( "SELECT `account_id`,`name` FROM `char` WHERE `online` = 1 ORDER BY RAND() LIMIT 1",.@aid,.@name$ ); for( .@i = 0; .@i < .@size; .@i++ ) { if( checkvending( .@name$[.@i] ) || checkchatting( .@name$[.@i] ) ) end; else if( .@aid ) .@i = rand( .itemid_size ); getitem .itemid[.@i],.amount[.@i],.@aid; announce "Krizazone Server - Lucky Player ["+.@name$+"] has received "+.amount[.@i]+" x "+getitemname( .itemid[.@i] )+".",0; } end; } Let me know if it's working.
  12. prontera.gat, 155, 182, 4 script Guild Information 4_F_KAFRA1,{ .@n$ = "[ Guild Information ]"; .@id = getcharid(2); if( .@id == 0 ) { mes .@n$; mes "Sorry, you are not in a guild."; close; } if( strcharinfo(0) != getguildmaster(.@id) ) { mes .@n$; mes "Sorry, you don't own the guild you are in."; close; } mes .@n$; mes "Your the Guild Member of: ^00AA00"+ getguildname(.@id) +"^000000"; close; }
  13. if( !getcharid(2) ) { mes "I'm sorry, but you are not in a Guild."; close; } mes "Hi! Your a Guild Member."; mes "How may i help you?"; next; do your function..........
  14. Try this. - script atcmds -1,{ OnInit: bindatcmd "petinfo",strnpcinfo(3)+"::OnAtcommand"; end; OnAtcommand: if( getpetinfo(PETINFO_NAME) == "null") { dispbottom "Sorry, you do not own a pet yet."; end; } else { dispbottom "=========== Information ==========="; dispbottom "ID: "+getpetinfo(PETINFO_ID)+""; dispbottom "Block ID: "+getpetinfo(PETINFO_BLOCKID)+""; dispbottom "Level: "+getpetinfo(PETINFO_LEVEL)+""; dispbottom "Class: "+getpetinfo(PETINFO_CLASS)+""; dispbottom "Name: "+getpetinfo(PETINFO_NAME)+""; dispbottom "Hungry: "+getpetinfo(PETINFO_HUNGRY)+""; dispbottom "Renamed: "+getpetinfo(PETINFO_RENAMED)+""; end; } }
  15. Hi, I was wondering since I was curious on this tool. does it actually work? I mean, I heard this tool across from the board. do you know who is the author of the software? if by chance, can I ask this tool if you have? please PM ME.
  16. Thank you =) Oh yeah, even if the map is simple itself I'm trying to put detail as much as possible so that it won't look empty. Yeah, been doing maps a long time ago since eA I'm just lazy to make because it takes a lot of time and patience. and now your my inspiration <3
  17. Hi again all! =) so I decided to make a small map for PvP Arena which is good for a certain event. Thank you! Ingame Preview: BrowEdit Preview:
  18. How are you ms. Beautiful? =)

    1. Najara

      Najara

      Hey Kaze! I'm well, how about you? ^_^

  19. If you don't mind? would you share the working copy you have? I mean the one you mentioned above?
  20. They have a huge difference both PRE and RENEWALS(new formulas).
  21. Try this simple You can easily configure the items at OnInit: Item DB: // SQL Version: REPLACE INTO `item_db2` VALUES (46996,'RANDOM_BOX','Random Box',18,NULL,NULL,200,NULL,NULL,NULL,NULL,0xFFFFFFFF,7,2,NULL,NULL,NULL,NULL,NULL,'doevent \"F_Random_Box::OnBoxClick\";',NULL,NULL); // TXT Version: 46996,RANDOM_BOX,Random Box,2,10000,,200,,,,,0xFFFFFFFF,7,2,,,,,,{ doevent \"F_Random_Box::OnBoxClick\"; },{},{} Script: http://immortalsro.com/rAScripts/random_box.txt
  22. I'm sorry, I cannot help you with this without the whole script that I can take a looked. does EXP_RESET_BASE is a functions or something?
  23. can you post the error pls? Try this: dispbottom "[EXP Reset System]: You have accumulated "+ F_InstertComma( #EXP_RESET_BASE ) +" / "+ F_InsertComma( #EXP_RESET_JOB) +" EXP: "+ epoch_time( .@gettimetick );
  24. I don't know what is epoch_time probably its Time2Str dispbottom "[EXP Reset System]: You have accumulated "+ F_InstertComma( #EXP_RESET_BASE ) +" / "+ F_InsertComma( #EXP_RESET_JOB) +" EXP. ("+ epoch_time( .@gettimetick) +")"; Try this one.
×
×
  • Create New...