Jump to content
  • 0

need help+Questions


angelingh

Question


  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  61
  • Reputation:   0
  • Joined:  05/24/16
  • Last Seen:  

hi Questions

i have online server (its work with hamachi)

its for test right now (only for me)

i want make the server for friends

 

then i make its for all i need buy good server then i do its i can transfer my wempServer there?(i no know how use wemp someone help me with that its be very sucks if i need build again :(

 

can i do the sever without hamachi? (i real new with servers) (i already try put all ip but other pepole cant login)

 

i want make items i hope if someone can help me with that and tell me how add its

 

i want make item then use its its do "@summon "monster" (one time use)

and make its drops from monsters

like ifrit drop "summon ifrit scroll" 1% rate

(all mvps)

 

i want add items to cash shop and change the "cash shop" to "event shop"

and make items (event coin) and its low chance to drop from mvps/mini bosss/all monsters in endless tower

how i can add items to cash shop and add item??

 

i dont hat OGH in server how i can add its?

(i mean that http://irowiki.org/wiki/Old_Glast_Heim )

 

and i want make one more item name is "premium scroll" and its let to normal players use @go @duel @storage and more if i can add its be good) and make its drop from normal monsters low chance

 

and how i can fix that?

xsbBTp9.png

 

hope if someone can help me pls i real need that i want make the server fast for friends right now its on my pc i just test it before i buy server :)

Edited by angelingh
Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  283
  • Reputation:   31
  • Joined:  07/08/14
  • Last Seen:  

When you downloaded your server folder you normally used either toirtoiseGit or TortoiseSVN.

 

If you used toirtoise git you need to do right click > tortoise git > Pull...

 

If you used tortoise svn you need to do right click > SVN Update

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  31
  • Topics Per Day:  0.01
  • Content Count:  283
  • Reputation:   31
  • Joined:  07/08/14
  • Last Seen:  

Hi

 

There's a new guide for recent servers, you can follow it

Be careful, to me a step is wrong, when loading the sql files you need to load the logs.sql in a new database named 'logs' (you should have 2 new databases, 'ragnarok' and 'logs')

(I'm not an expert so don't trust my words more than others')

 

You'll probably have some errors and struggle to solve them like everybody but that's part of the game ^^

 

I have no idea how to make your friends able to join your server, sorry that's not my domain..

 

If you want to add custom mobs : wiki , and custom items : wiki

Go take a look at the wiki, you'll find a lot of very useful things.

 

If you're a novice at scripting, you need to learn a bit about it if you want to create a server, don't hesitate to look at the wiki and at the script commands, you also have a lot of examples of scripts in your server use them all you want.

 

For the cash shop you need to edit the item_cash_db file.

 

For the scroll thing, you can just set a variable to 1 when equipping an item and setting it to 0 on unequip. This way you'll be able to allow players to use commands with the 'bindatcmd' and 'atcommand' script commands.

Like this:

// in the item_bd :
// id,.......,{},{ GoAllow = 1 ; DuelAllow = 1 ; StorageAllow = 1; },{ GoAllow = 0 ; DuelAllow = 0 ; StorageAllow = 0; }

-	script	At_go_duel_storage_Allow	-1,{
OnInit:
	bindatcmd "go",strncinfo(0)+"::OnGo";
	bindatcmd "duel",strncinfo(0)+"::OnDuel";
	bindatcmd "storage",strncinfo(0)+"::OnStorage";
	end;
	
OnGo: 
	if (getgmlevel() >= 20 || GoAllow) atcommand "@go "+.@atcmd_parameters$;
	else dispbottom "You don't have permission for using '@go' è_é";
	end;
	
OnDuel: 
	if (getgmlevel() >= 20 || DuelAllow) atcommand "@duel "+.@atcmd_parameters$;
	else dispbottom "You don't have permission for using '@duel' è_é";
	end;
	
OnGo: 
	if (getgmlevel() >= 20 || StorageAllow) atcommand "@storage";
	else dispbottom "You don't have permission for using '@storage' è_é";
	end;
}

// not tested ;p

The izlude map bug is normal in recent clients, I think you need to find an old iz_int map and replace the one you have with it.

 

 

Hope you'll enjoy the rA world ! Take care

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  61
  • Reputation:   0
  • Joined:  05/24/16
  • Last Seen:  

Hi

 

There's a new guide for recent servers, you can follow it

Be careful, to me a step is wrong, when loading the sql files you need to load the logs.sql in a new database named 'logs' (you should have 2 new databases, 'ragnarok' and 'logs')

(I'm not an expert so don't trust my words more than others')

 

You'll probably have some errors and struggle to solve them like everybody but that's part of the game ^^

 

I have no idea how to make your friends able to join your server, sorry that's not my domain..

 

If you want to add custom mobs : wiki , and custom items : wiki

Go take a look at the wiki, you'll find a lot of very useful things.

 

If you're a novice at scripting, you need to learn a bit about it if you want to create a server, don't hesitate to look at the wiki and at the script commands, you also have a lot of examples of scripts in your server use them all you want.

 

For the cash shop you need to edit the item_cash_db file.

 

For the scroll thing, you can just set a variable to 1 when equipping an item and setting it to 0 on unequip. This way you'll be able to allow players to use commands with the 'bindatcmd' and 'atcommand' script commands.

Like this:

// in the item_bd :
// id,.......,{},{ GoAllow = 1 ; DuelAllow = 1 ; StorageAllow = 1; },{ GoAllow = 0 ; DuelAllow = 0 ; StorageAllow = 0; }

-	script	At_go_duel_storage_Allow	-1,{
OnInit:
	bindatcmd "go",strncinfo(0)+"::OnGo";
	bindatcmd "duel",strncinfo(0)+"::OnDuel";
	bindatcmd "storage",strncinfo(0)+"::OnStorage";
	end;
	
OnGo: 
	if (getgmlevel() >= 20 || GoAllow) atcommand "@go "+.@atcmd_parameters$;
	else dispbottom "You don't have permission for using '@go' è_é";
	end;
	
OnDuel: 
	if (getgmlevel() >= 20 || DuelAllow) atcommand "@duel "+.@atcmd_parameters$;
	else dispbottom "You don't have permission for using '@duel' è_é";
	end;
	
OnGo: 
	if (getgmlevel() >= 20 || StorageAllow) atcommand "@storage";
	else dispbottom "You don't have permission for using '@storage' è_é";
	end;
}

// not tested ;p

The izlude map bug is normal in recent clients, I think you need to find an old iz_int map and replace the one you have with it.

 

 

Hope you'll enjoy the rA world ! Take care

 

 

ty ! :)

 

someone can tell me how i can update my server? how i can check my ver (i no have ogh hard mode and  horror toy factory and more? i real want test its on my server and do its with friends)

 i search old iz_int  and no found someone cna give me link pls?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  258
  • Reputation:   54
  • Joined:  01/09/12
  • Last Seen:  

Well, first, for the update, if you have a local test server and you download it by GIT that is more easy, you only open the folder, click right on the mouse to open the menu, and click svn update and you will have an updated rathena.

 

For the map, well i have notice that the map is in the data but it didnt read it so, what i have do was extract the map and put it into my data folder and its work, try to put it in your grf or your data fold.(Check the attached files) Dont forget to update your mapcache, and compile, because the rathena mapcache is not updated.

iz int.rar

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  61
  • Reputation:   0
  • Joined:  05/24/16
  • Last Seen:  

When you downloaded your server folder you normally used either toirtoiseGit or TortoiseSVN.

 

If you used toirtoise git you need to do right click > tortoise git > Pull...

 

If you used tortoise svn you need to do right click > SVN Update

 

 

Well, first, for the update, if you have a local test server and you download it by GIT that is more easy, you only open the folder, click right on the mouse to open the menu, and click svn update and you will have an updated rathena.

 

For the map, well i have notice that the map is in the data but it didnt read it so, what i have do was extract the map and put it into my data folder and its work, try to put it in your grf or your data fold.(Check the attached files) Dont forget to update your mapcache, and compile, because the rathena mapcache is not updated.

 

ty i update the folder but now i get that

i update the server folder and still no have ogh and more

 

edit: hmm maybe its Because i add items to cash shop???

qulOUQm.png

Edited by angelingh
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  258
  • Reputation:   54
  • Joined:  01/09/12
  • Last Seen:  

How you add the items? cause its saying that you dont add it correctly, must be like this:

~

// Type:   // 0: New   // 1: Hot   // 2: Limited   // 3: Rental   // 4: Gear   // 5: Buff   // 6: Heal   // 7: Other


So if you want your ítem appear when you push the buff button, you mus add it  this way:
 

5,501,300//Type,ItemID,Price

 

not just the ítem id, well i think can be that... and btw what is ogh?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  61
  • Reputation:   0
  • Joined:  05/24/16
  • Last Seen:  

How you add the items? cause its saying that you dont add it correctly, must be like this:

~

// Type:   // 0: New   // 1: Hot   // 2: Limited   // 3: Rental   // 4: Gear   // 5: Buff   // 6: Heal   // 7: Other

So if you want your ítem appear when you push the buff button, you mus add it  this way:

 

5,501,300//Type,ItemID,Price

 

not just the ítem id, well i think can be that... and btw what is ogh?

 

old glast heim

i no have that map ( i mean i no have hard more and i no have the items)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...