[Help Thread] Please post your questions here.

09/09/2013 23:28 Nada92#2491
Quote:
Originally Posted by LeCannibal View Post
I got this error opening up Game Server:

[Only registered and activated users can see links. Click Here To Register...]
umm i've never faced that error before but.. i think its a result of a virus or system files missing :p
im dont know, just check your system updates and make sure that you have Microsoft redistributable installed and updated on your system, also i prefer to download a good Anti-Virus software and scan your system.

hope it work fine then :rolleyes:
09/09/2013 23:48 ThunderNikk#2492
Quote:
Originally Posted by LeCannibal View Post
Please I really can't solve this!!
Please tell me...are you getting a crash for arcadia at this time?

When it stops at max item index are you generating a new arcadia.dmp file in your game server folder?

One last question...what is the name of your Arcadia database?

:D
09/10/2013 00:42 LeCannibal#2493
Arcadia

Edit:Resolved
09/10/2013 01:21 Nada92#2494
Quote:
Originally Posted by LeCannibal View Post
Arcadia

Edit:Resolved
i prefer to share how you solved it with people .
09/10/2013 03:18 ThunderNikk#2495
Quote:
Originally Posted by Nada92 View Post
i prefer to share how you solved it with people .
If I had to guess...

He just freshly restored the databases and in the 8.1 server files Arcadia restores as Arcadia8_1

If you do not rename it the .opt file directs Captain Herlock to load Arcadia, when it can not find it (because it is still named Arcadia8_1) it causes a crash and a .dmp file generation, and may also cause some miscommunication with Windows and C++ when it terminates in a .dmp

When the database name is not correct it hangs at exactly that position of loading "loading max item index"

Then crash and .dmp

That is simply a guess though, he may have actually found something else that I caused him to look at.
09/10/2013 19:33 dima714#2496
Quote:
Originally Posted by ismokedrow View Post

p.s. open lua files with Notepad++ then click the "Encoding" menu > "Character Sets" > "Korean" > "Windows-949" then copy+paste into google translator and then paste back into the file, now all the apparent gibberish is in broken english (better than nothing right)
In worldlocation in Acadia - Novice Island = 70100300,
and monster_respawn = 11. How to link these values ​​or where lua script takes these values​​?
09/11/2013 06:56 ninex#2497
Are there any newer and or better repacks then 8.1_By_AL7roB ??
09/11/2013 07:49 Nada92#2498
Quote:
Originally Posted by Nada92 View Post
Hi people

I need some help with these two issues please, first is
1.When i attempt to tame a creature, i got no message showing up like (Attempting to tame "MobName") and the result as well (The taming of "MobName" has been successful/failed.

2.All of my staged creature cards have only 5 durability point, i need to know how to edit this and how to edit the Creature enhancement & Taming rate.

If someone could write me an sql file to edit creature cards durability and creature enhancement and taming rates this would be great and very helpful. :rolleyes:

I used "search" to find any helpful results but.. nothing.
actually i am a beginner so.. sorry for posting these issues :p
[Edited] Solved, Thank you .BlackCat.
[Only registered and activated users can see links. Click Here To Register...]
09/11/2013 12:06 selva1982#2499
I would like a help for my server through on no-ip pos he is already running via Hamashi but would like for it via no-ip from ja thank
09/11/2013 12:07 .BlackCat.#2500
Quote:
Originally Posted by Nada92 View Post
Anyone Please ?


Note :


1.000 ==> 100%
0.1 ==> 10%
0.01 ==> 1%

To change Creature enhance Rates :


PHP Code:
update arcadia.DBO.EnhanceResource
set percentage_1 
'0.90000',percentage_2 '0.70000' percentage_3 '0.55000' percentage_4 '0.40000' percentage_5 '0.30000'
where need_item '710001' 

To change taming percentage :


PHP Code:
--T6
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.0300taming_exp_mod=
 WHERE model LIKE 
'%dragon%' OR model LIKE '%deathtyrant%' OR  
       
model like '%undine%' OR MODEL LIKE '%pick%' OR model like '%minotaur%' OR
       
model like '%undead_slaughter%' OR model like '%baphomet%'
GO
-- T5
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.1500taming_exp_mod=
 WHERE model LIKE 
'%jini%' OR model LIKE '%keberos%' OR model LIKE '%cube%' OR model like
GO
--T4
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.4000taming_exp_mod=
 WHERE model LIKE 
'%angel%' OR model LIKE '%horseman%' OR model LIKE '%tafari%' or model LIKE '%eimus%'
GO
--T3
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.7500taming_exp_mod=
 WHERE model LIKE 
'%hawkman%' OR model LIKE '%salamander%' OR model LIKE '%windsong%' OR model LIKE '%unicorn%'
GO
--T2
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.9500taming_exp_mod=
 WHERE model LIKE 
'%pixi%' OR model LIKE '%seiren%' OR model LIKE '%skelfighter%' OR model LIKE '%orc%' OR model LIKE '%wolf%' OR model LIKE '%octopus%' OR model LIKE '%yeti%' OR model like '%beast_raidion%'
GO
--T1
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.9500 -- Change this to the taming percentage 
 WHERE model LIKE 
'%chichen%' OR model LIKE 'beast_hen%' or model LIKE '%turtle%' OR model LIKE '%panthera%'
GO 
09/11/2013 12:45 Nada92#2501
Quote:
Originally Posted by .BlackCat. View Post
Note :


1.000 ==> 100%
0.1 ==> 10%
0.01 ==> 1%

To change Creature enhance Rates :


PHP Code:
update arcadia.DBO.EnhanceResource
set percentage_1 
'0.90000',percentage_2 '0.70000' percentage_3 '0.55000' percentage_4 '0.40000' percentage_5 '0.30000'
where need_item '710001' 

To change taming percentage :


PHP Code:
--T6
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.0300taming_exp_mod=
 WHERE model LIKE 
'%dragon%' OR model LIKE '%deathtyrant%' OR  
       
model like '%undine%' OR MODEL LIKE '%pick%' OR model like '%minotaur%' OR
       
model like '%undead_slaughter%' OR model like '%baphomet%'
GO
-- T5
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.1500taming_exp_mod=
 WHERE model LIKE 
'%jini%' OR model LIKE '%keberos%' OR model LIKE '%cube%' OR model like
GO
--T4
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.4000taming_exp_mod=
 WHERE model LIKE 
'%angel%' OR model LIKE '%horseman%' OR model LIKE '%tafari%' or model LIKE '%eimus%'
GO
--T3
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.7500taming_exp_mod=
 WHERE model LIKE 
'%hawkman%' OR model LIKE '%salamander%' OR model LIKE '%windsong%' OR model LIKE '%unicorn%'
GO
--T2
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.9500taming_exp_mod=
 WHERE model LIKE 
'%pixi%' OR model LIKE '%seiren%' OR model LIKE '%skelfighter%' OR model LIKE '%orc%' OR model LIKE '%wolf%' OR model LIKE '%octopus%' OR model LIKE '%yeti%' OR model like '%beast_raidion%'
GO
--T1
UPDATE 
[Arcadia].[dbo].[MonsterResource]
   
SET [taming_percentage]=0.9500 -- Change this to the taming percentage 
 WHERE model LIKE 
'%chichen%' OR model LIKE 'beast_hen%' or model LIKE '%turtle%' OR model LIKE '%panthera%'
GO 
.BlackCat.
Thanks for your help, and by the way some lines need to be corrected. :rolleyes:

Code:
--T6

UPDATE [Arcadia].[dbo].[MonsterResource]
   SET [taming_percentage]=0.0300, taming_exp_mod=4 
 WHERE model LIKE '%dragon%' OR model LIKE '%deathtyrant%' OR  model like '%undine%' OR MODEL LIKE '%pick%' OR model like '%minotaur%' OR model like '%undead_slaughter%' OR model like '%baphomet%'
 GO
 
--T5
UPDATE [Arcadia].[dbo].[MonsterResource]
   SET [taming_percentage]=0.2500, taming_exp_mod=2
 WHERE model LIKE '%jini%' OR model LIKE '%keberos%' OR model LIKE '%cube%'
GO
09/11/2013 13:10 foxdie3mibc#2502
I am the owner of my pserver and i would like to know if there is a way to know if one of my GM's used a code in game?

I dont want them to give gear/pets/plvl for all their friends..

and also if there is a way that they could hide it from me.
Thank You..
09/11/2013 17:58 DrMaRe#2503
Quote:
Originally Posted by DrMaRe View Post
Hallo liebe ePvPer

Ich habe da ein an liegen; Ich habe mir eine .lua geschrieben.
Ich habe 5 Ringe im Inventar und ich möchte das sie per NPC mir entfernt werden!

Code:
delete_item( get_item_handle( 437001 ), 1 )
Hier mit entferne ich ein Ring!


Grüßt DrMaRe

*Noch keine antwort bekommen!
09/11/2013 18:28 Player95#2504
[Only registered and activated users can see links. Click Here To Register...]
09/11/2013 18:52 DrMaRe#2505
Quote:
Originally Posted by Player95 View Post
[Only registered and activated users can see links. Click Here To Register...]
Schön das du dich so gut mit Googel auskennst.

Es hat aber nicht meine frage beantwortet!


~~~~~~~~
Edit

Fragt ein anders Sprachige Person, warum hat mein NPC ein Pickel = 100 Antworten warum der NPC ein Pickel hat.

Fragt ein Deutscher, warum hat mein NPC ein Pickel = gehe Googeln

Wo ist der Fehler?