Jump to content

Lord Ganja

Members
  • Content Count

    161
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Lord Ganja

  1. Is this the Byteflux v4p? Thanks! EDIT: Hey whenever I clicked the Vote for Credits! on the main menu it leads mo to a blank page.
  2. Where can I purchase it? I'm willing to pay for it. lol I've been looking for Xantara's and Byteflux V4P addon but no luck.
  3. Can you share the link on where can I download it? can't seem to find it on google. Even Xantara's V4P addon XD
  4. I was looking for Vote For Points addon
  5. I'm having an appcrash during login on my client. At first it was working well, then after I change the /bm settings the app always crash during login.. I delete the files inside savedata folder and it's now working again. any ideas why this appcrash is occuring? thanks! Problem signature: Problem Event Name: APPCRASH Application Name: Ragexe.exe Application Version: 0.0.0.0 Application Timestamp: 52b78a19 Fault Module Name: Ragexe.exe Fault Module Version: 0.0.0.0 Fault Module Timestamp: 52b78a19 Exception Code: c0000005 Exception Offset: 002a8e7c OS Version: 6.1.7601.2.1.0.256.1 Locale ID: 1033 Additional Information 1: 0a9e Additional Information 2: 0a9e372d3b4ad19135b953a78882e789 Additional Information 3: 0a9e Additional Information 4: 0a9e372d3b4ad19135b953a78882e789Read our privacy statement online: http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409If the online privacy statement is not available, please read our privacy statement offline: C:Windowssystem32en-USerofflps.txt BTW im using the latest kRO. EDIT: Found out that the appcrash only occur when I enter a hotkey on Hotkey 4-8 and Hotkey 4-9.. any ideas why?
  6. Just wanted to ask what Flux CP V4P addon are you guys currently using as of now? Please provide feedbacks please. I was just looking for a v4p addon. I tried feefty's v4p but it's not working well for me. Thanks!
  7. is there any hommutate homunculus S for pre-renewal? Thanks!
  8. Since highjump fails on noteleport map, is it possible to enable use of highjump on a specific map with noteleport mapflag? Example. The pvp room in my server has noteleport mapflag since I don't want my players to use teleport inside the pvp room. But I wanted highjump to be enabled inside the pvp room.. From skill.c under case TK_HIGHJUMP: if( map->list[src->m].flag.noteleport && !(map->list[src->m].flag.battleground || map_flag_gvg2(src->m))) { How do I add an exemption map with noteleport mapflag without removing the line 'map->list[src->m].flag.noteleport'? I was thinking about adding something like this map->list[src->m].name == "pvp_room" || map->list[src->m].name == "pvp_room1" So "pvp_room" & "pvp_room1" map has noteleport mapflag, highjump can still be used inside. Thanks in advance!
  9. Tried these but still not working :/ if((x || y) && map->getcell(src->m, x, y, CELL_CHKPVP) && map->list[src->m].name == "prontera" ) if((x || y) && map->getcell(sd->bl.m, x, y, CELL_CHKPVP) && map->list[src->m].name == "prontera" ) if((x || y) && map->getcell(src->m, x, y, CELL_CHKPVP) && map->list[sd->bl.m].name == "prontera" ) I tried this one and it's working if((x || y) && map->getcell(sd->bl.m, x, y, CELL_CHKPVP)) but I only wanted it to be applied on pvp cell on prontera map so I added this map->list[sd->bl.m].name == "prontera" but whenever I tried to add the map check, it doesn't work anymore.
  10. I've been trying to modify the skill shadow jump and high jump to show skill fail whenever they click the skill on a pvp cell located at prontera only. Tried to do this but it's not working. The skill doesn't fail when the target coordinates is a pvp cell.. Help please? thanks in advance! skill.c case NJ_SHADOWJUMP: + if((x || y) && map->getcell(sd->bl.m, x, y, CELL_CHKPVP) && map->list[sd->bl.m].name == "prontera" ) // Cannot shadow jump on prontera pvp cell + { + clif->skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); + break; + } if( !map_flag_gvg2(src->m) && !map->list[src->m].flag.battleground ) { //You don't move on GVG grounds. unit->movepos(src, x, y, 1, 0); clif->slide(src,x,y); } status_change_end(src, SC_HIDING, INVALID_TIMER); break; .................................................................................................................................................... case TK_HIGHJUMP: { int x,y, dir = unit->getdir(src); //Fails on noteleport maps, except for GvG and BG maps [Skotlex] if( map->list[src->m].flag.noteleport && !(map->list[src->m].flag.battleground || map_flag_gvg2(src->m)) ) { x = src->x; y = src->y; } else { x = src->x + dirx[dir]*skill_lv*2; y = src->y + diry[dir]*skill_lv*2; } + if((x || y) && map->getcell(sd->bl.m, x, y, CELL_CHKPVP) && map->list[sd->bl.m].name == "prontera" ) // Cannot shadow jump on prontera pvp cell + { + clif->skill_fail(sd,skill_id,USESKILL_FAIL_LEVEL,0); + break; + } clif->skill_nodamage(src,bl,TK_HIGHJUMP,skill_lv,1); if(!map->count_oncell(src->m,x,y,BL_PC|BL_NPC|BL_MOB,0) && map->getcell(src->m,x,y,CELL_CHKREACH)) { clif->slide(src,x,y); unit->movepos(src, x, y, 1, 0); } } break; EDIT: Figured out the problem is because of map->list[sd->bl.m].name == "prontera".. What script command should I use ?
  11. Does anyone has the script for the longest agit defender? wherein every second of defending the agit counts. Here's the criteria of what i'm looking for: - An npc in which shows the Top 10 Longest Agit Defender the npc will show somehow like this: [Top 10 Longest Agit Defender]Top 1: Ganja Guild : 10 minutes 14 seconds // top 1: <guild name> : <defending time>Top 2: Ganja2 Guild : 8 minutes 10 seconds // top 2: <guild name> : <defending time>//and so on. . . .//not a matter of points, but a matter of time on how long does the guild defend their castle - after clicking 'next' it will also show the Longest Agit Defender of the Day which resets after woe [ Longest Agit Defender of the Day ]September 24, 2015 - Kriemhild //<date of defend> - <defended castle name>- Ganja Guild - 10 minutes 12 seconds // //- <guild name> : <defending time> Thanks in advance!
  12. I'm currently using the ROCred launcher and was wondering what code should I supposed to put on the 'actiondata' if I wanted to launch my patcher which is located in the same folder. ; Action to invoke when the button is pressed.; Values:; 0: Launch application or website; 1: Launch application or website, and close application; 2: Close application; 3: Display a message (uses C-style escaping characters)ActionType=0; Data associated with button's action type.; Note: To refer to a string table entry, use #<number> (ex. #123).ActionData=http://nn.nachtwolke.com/ <-- THIS ONE Thanks in advance! Solved! LINK
  13. What if I wanted to launch the patcher using the WWW button. What should I put on actiondata? the patcher is in the same folder as the rocred. ; Action to invoke when the button is pressed.; Values:; 0: Launch application or website; 1: Launch application or website, and close application; 2: Close application; 3: Display a message (uses C-style escaping characters)ActionType=0; Data associated with button's action type.; Note: To refer to a string table entry, use #<number> (ex. #123).ActionData=http://nn.nachtwolke.com/ <-- THIS ONE
  14. Thank you @@GmOcean and @@Angelmelody
  15. @@Dastgir, Can you give an example on how do I track hacked items from another account using the item unique id? Like where should I start?
  16. Is it possible to track lost, hacked, etc items by their unique id? How does this work though?
  17. I'm having an error because of this script. How do I skip the current loop when ".@char_id[.@i]" is offline? .@nb = query_sql("SELECT `char_id` FROM `char_reg_num_db` WHERE `key`='hunter' && `value`='1'", .@char_id ); for( .@i = 0; .@i < .@nb; .@i++ ) { dispbottom "(From Hunter Academy) : "+strcharinfo(0)+" just got online.",0xFFFF00,.@char_id[.@i]; } Error: [Error]: buildin_dispbottom: Player with char id '150018' is not found. Thanks in advance.
  18. Is there anyway way to enable experience when killing another player? Just like when killing monster does. It autolevel up, add skill points and statpoints.. Thanks in advance.
  19. @@ossi0110, Thank you for suggesting this. I didn't know that I can embed it. lol btw, can you explain it further? it says 'Add the INI file as RCDATA resource named CONFIG with ResourceHacker.'.. -> can't really understand how to do this @@Emistry, Can I embed multiple files using Nemo? I'm also planning to embed ROExt ini file.. I'm on my way home right now. I'll try what you guys suggested and update this post.. Thank you so much.
  20. is it possible to encrypt .INI files? im using rocred, and other programs that uses .ini files.. And don't want my players to modify it easily. So is it possible to encrpyt those files? Thanks in advance
  21. @@Angelmelody - Thanks again! Anyway the script doesn't show the last entry if the player is offline.. It was displayed like this: Top 1 - Points: 1214> Lord GanjaTop 2 - Points: 68> [Offline]Top 3 - Points:45// And it is now blank here// If they player is only the char name is displayed. but if not online, it's just blank
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.