[Help Thread] Please post your questions here.

04/21/2015 19:06 nimoht#4501
If you want Domesday , the fix that I put has just due to an active function that should not to be in the smp_check_paid_item of Ismokedrow (don't worry , we are all humans ; not perfect but more interesting :-) ) and no paid_items management on the server without functional CashShop . Without my fix , there are other ways more or less good to get the hv_pass but not without modding the lua files and / or smp 's .
04/21/2015 21:10 tokesbowls#4502
Hello,
I was thinking the other day on how nice it would be to have a search option in your warehouse and inventory, not sure if its even possible. But has anyone else thought of this? I'm sure someone has lol. Just looking for though and opinions

Thank you
04/23/2015 13:18 colonelx#4503
what is the use of table [JobLevelBonus]
and what difference between str_1 ,str_2 and default_str
04/23/2015 15:17 ThunderNikk#4504
Stat bonuses that are applied as job level increases.

Not sure about part 2 there without being able to look at my server tables.
04/23/2015 15:22 colonelx#4505
ok now i know what is the use of it but still need to know what difference between str_1 ,str_2 and default_str :(
04/24/2015 21:32 Questiontest#4506
Quote:
Originally Posted by thndr View Post
You could try this in your .bat launcher from the 9.1 file release and maybe you don't have to remove game guard from the sframe...

/use_nprotect:0
Sorry I didn't understand it is 4 epic not 9 epic

I need to easy way to remove gameguard from the sframe and thank you
04/24/2015 23:14 thund22222#4507
I have a rather strange problem for me, I've recently reprogrammed cash shop for gold and it works fine but the problem is if you buy the tool and you exit the game and return again back to gold again
04/25/2015 04:09 ThunderNikk#4508
Quote:
Originally Posted by Questiontest View Post
Sorry I didn't understand it is 4 epic not 9 epic

I need to easy way to remove gameguard from the sframe and thank you
Did you even try it?
04/25/2015 11:47 Questiontest#4509
Quote:
Originally Posted by thndr View Post
Did you even try it?
Try what
04/25/2015 14:59 ThunderNikk#4510
Quote:
Originally Posted by Questiontest View Post
Try what
putting

/use_nprotect:0

In your .bat file launcher like...

Code:
@ECHO OFF
START RappelzCmdLauncher.exe Sframe.exe /auth_ip:10.71.1.2 /auth_port:8841 /use_nprotect:0 /locale:ASCII /country:US /commercial_shop /cash
Or since you shouldnt need RappelzCMDLanucher.exe with epic 4 then...

Code:
@ECHO OFF
START Sframe.exe /auth_ip:10.71.1.2 /auth_port:8841 /use_nprotect:0 /locale:ASCII /country:US /commercial_shop /cash
And see what happens...then if you still need to strip game guard from sframe let someone know, but I am using the official sframe with game guard in it.
04/25/2015 15:07 thund22222#4511
@thndr If you can help me
How can I link sql server and lua script?
04/25/2015 15:21 MrStubborn#4512
is there any options for insert_summon_by_summon_id(summon_id) function ?
like enhance or level or player name ?
04/25/2015 17:00 ThunderNikk#4513
Quote:
Originally Posted by thund22222 View Post
@thndr If you can help me
How can I link sql server and lua script?
Usually it is only linked in select columns in the database tables like NPCs and their contact_script will link the NPC to a .lua script function, or monsters and the script_on_dead function which will fire a certain .lua script.

If you are referring to having a .lua script execute an SQL query then you need to look at some work done by mongreldogg

[Only registered and activated users can see links. Click Here To Register...]
04/25/2015 18:07 thund22222#4514
Quote:
Originally Posted by thndr View Post
Usually it is only linked in select columns in the database tables like NPCs and their contact_script will link the NPC to a .lua script function, or monsters and the script_on_dead function which will fire a certain .lua script.

If you are referring to having a .lua script execute an SQL query then you need to look at some work done by mongreldogg

[Only registered and activated users can see links. Click Here To Register...]
I want to implement query on auth db
Can I do it?
04/25/2015 19:42 ThunderNikk#4515
IDK I am not sure 1. how you are triggering the .lua script that will run the query on auth and 2. I am not sure if what is in that guide helps you at all because I do not know what you are doing.

You should read that guide.