SphereCommunity
Weapon Gump dialog - Printable Version

+- SphereCommunity (https://forum.spherecommunity.net)
+-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d)
+--- Forum: Script Help (/Forum-Script-Help)
+--- Thread: Weapon Gump dialog (/Thread-Weapon-Gump-dialog)



Weapon Gump dialog - larmc20 - 01-27-2014 11:46 PM

I made this script for a WARSHARD.
But doesn't matter what Button the player press. It always will give a Short Spear.



[Image: 7mrk.png]

PHP Code:
// Created 27/01/2014 11:37:59, with Gump Studio.
// Exported with with SphereExporter ver 1.1.
// Script for 0.56/Revisions

[DIALOG d_armas]
0,0
NOCLOSE
page 0
resizepic 157 62 9200 207 364
tilepic 190 173 5121
textentry 231 97 99 20 0 0 0
tilepic 187 205 5123
tilepic 195 252 5127
tilepic 188 280 5117
tilepic 187 311 5042
tilepic 191 349 5119
textentry 254 175 88 20 0 0 1
textentry 254 212 88 20 0 0 2
textentry 253 252 88 20 0 0 3
textentry 240 287 102 20 0 0 4
textentry 256 320 88 20 0 0 5
textentry 254 352 88 20 0 0 6
tilepic 177 76 5384
button 170 219 9702 9703 1 0 0
button 171 261 9702 9703 1 0 0
button 171 295 9702 9703 1 0 0
button 170 358 9702 9703 1 0 0
button 172 326 9702 9703 1 0 0
button 172 179 9702 9703 1 0 0
button 288 391 1026 1027 1 0 0

[DIALOG d_armas text]
Escolha a arma
Kryss
Short Spear
War Mace
Heavy Crossbow
Bow
Katana

[DIALOG d_armas button]
ON=0
// Short Spear
// 
SRC.NEWITEM i_spear_short
SRC
.ACT.equip

ON
=0
// War Mace
// 
SRC.NEWITEM i_mace_war
SRC
.ACT.equip

ON
=0
// Heavy Crossbow
// 
SRC.NEWITEM i_crossbow_heavy
SRC
.ACT.EQUIP

ON
=0
// Katana
// 
SRC.NEWITEM i_katana
SRC
.ACT.equip

ON
=0
// Bow
// 
SRC.NEWITEM i_BOW
SRC
.ACT.BOUNCE

ON
=0
// Button Kryss
// 
SRC.NEWITEM i_kryss
SRC
.ACT.equip

ON
=0
// Button 8
// 


[EOF



RE: Weapon Gump dialog - Feeh - 01-27-2014 11:49 PM

You must change the button id/param. Every button is set to 0, set them starting by 1 (0 is reserved for dialog closing)


RE: Weapon Gump dialog - larmc20 - 01-27-2014 11:53 PM

Thank man. It worked.


RE: Weapon Gump dialog - Extreme - 01-27-2014 11:54 PM

(01-27-2014 11:46 PM)larmc20 Wrote:  I made this script for a WARSHARD.
But doesn't matter what Button the player press. It always will give a Short Spear.



[Image: 7mrk.png]

PHP Code:
// Created 27/01/2014 11:37:59, with Gump Studio.
// Exported with with SphereExporter ver 1.1.
// Script for 0.56/Revisions

[DIALOG d_armas]
0,0
NOCLOSE
page 0
resizepic 157 62 9200 207 364
tilepic 190 173 5121
textentry 231 97 99 20 0 0 0
tilepic 187 205 5123
tilepic 195 252 5127
tilepic 188 280 5117
tilepic 187 311 5042
tilepic 191 349 5119
textentry 254 175 88 20 0 0 1
textentry 254 212 88 20 0 0 2
textentry 253 252 88 20 0 0 3
textentry 240 287 102 20 0 0 4
textentry 256 320 88 20 0 0 5
textentry 254 352 88 20 0 0 6
tilepic 177 76 5384
button 170 219 9702 9703 1 0 1
button 171 261 9702 9703 1 0 2
button 171 295 9702 9703 1 0 3
button 170 358 9702 9703 1 0 4
button 172 326 9702 9703 1 0 5
button 172 179 9702 9703 1 0 6
button 288 391 1026 1027 1 0 7

[DIALOG d_armas text]
Escolha a arma
Kryss
Short Spear
War Mace
Heavy Crossbow
Bow
Katana

[DIALOG d_armas button]
ON=1
// Short Spear
// 
SRC.NEWITEM i_spear_short
SRC
.ACT.equip

ON
=2
// War Mace
// 
SRC.NEWITEM i_mace_war
SRC
.ACT.equip

ON
=3
// Heavy Crossbow
// 
SRC.NEWITEM i_crossbow_heavy
SRC
.ACT.EQUIP

ON
=4
// Katana
// 
SRC.NEWITEM i_katana
SRC
.ACT.equip

ON
=5
// Bow
// 
SRC.NEWITEM i_BOW
SRC
.ACT.BOUNCE

ON
=6
// Button Kryss
// 
SRC.NEWITEM i_kryss
SRC
.ACT.equip

ON
=7
// Button 8
// 


[EOF



RE: Weapon Gump dialog - Feeh - 01-28-2014 08:13 AM

Why are you using textentry instead of label? They're intended to use when the server must ask the user to entry some value
Also, download the updated sphere export plugin. I've recompiled it some time ago but it is still working, and using a more effective syntax (dtext, dtextentry, dhtmlgump...)